You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
558 B
Makefile
24 lines
558 B
Makefile
## AUTOMAKE_OPTIONS = foreign
|
|
|
|
AM_CPPFLAGS = \
|
|
-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
|
|
-DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
|
|
-DPACKAGE_DATA_DIR=\""$(pkgdatadir)"\" \
|
|
-DCNFPATH=\""$(prefix)/etc"\" \
|
|
-I../include \
|
|
-I../lib
|
|
|
|
AM_CFLAGS = -Wall -g
|
|
|
|
# where to find libraries
|
|
libslocal = ../sxt/.libs/libsxt.la
|
|
|
|
bin_PROGRAMS = sxtkeygen sxtkeyinfo
|
|
|
|
sxtkeygen_SOURCES = misc.c sxtkeygen.c
|
|
sxtkeygen_LDADD = $(OPENSSL_LIBS) $(LIBSXT_LIBS) $(libslocal)
|
|
|
|
sxtkeyinfo_SOURCES = misc.c sxtkeyinfo.c
|
|
sxtkeyinfo_LDADD = $(OPENSSL_LIBS) $(LIBSXT_LIBS) $(libslocal)
|
|
|