You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
696 B
23 lines
696 B
# Makefile.am - PIN entry FLTK frontend.
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
bin_PROGRAMS = pinentry-fltk
|
|
|
|
if FALLBACK_CURSES
|
|
ncurses_include = $(NCURSES_INCLUDE)
|
|
libcurses = ../pinentry/libpinentry-curses.a $(LIBCURSES) $(LIBICONV)
|
|
else
|
|
ncurses_include =
|
|
libcurses =
|
|
endif
|
|
|
|
AM_CPPFLAGS = $(COMMON_CFLAGS) $(FLTKCXXFLAGS) $(ncurses_include) -I$(top_srcdir)/secmem -I$(top_srcdir)/pinentry
|
|
AM_CXXFLAGS = -std=c++11
|
|
LDADD = ../pinentry/libpinentry.a ../secmem/libsecmem.a $(COMMON_LIBS) $(LIBCAP) $(FLTKLIBS) $(libcurses)
|
|
|
|
pinentry_fltk_SOURCES = main.cxx pinwindow.cxx pinwindow.h \
|
|
passwindow.cxx passwindow.h \
|
|
qualitypasswindow.cxx qualitypasswindow.h
|
|
|
|
EXTRA_DIST = encrypt.xpm icon.xpm
|