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.
21 lines
420 B
Makefile
21 lines
420 B
Makefile
9 years ago
|
## 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
|
||
|
|
||
|
filelistd_SOURCES = sxtkeygen.c
|
||
|
filelistd_LDADD = $(OPENSSL_LIBS) $(libslocal)
|
||
|
|