18 lines
356 B
Makefile
18 lines
356 B
Makefile
|
## AUTOMAKE_OPTIONS = foreign
|
||
|
|
||
|
AM_CPPFLAGS = \
|
||
|
-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
|
||
|
-DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
|
||
|
-DPACKAGE_DATA_DIR=\""$(pkgdatadir)"\" \
|
||
|
-DCNFPATH=\""$(prefix)/etc"\" \
|
||
|
-I$(top_srcdir)/include
|
||
|
|
||
|
AM_CFLAGS = -Wall -g
|
||
|
|
||
|
bin_PROGRAMS = ejabberdauth
|
||
|
|
||
|
ejabberdauth_SOURCES = main.c
|
||
|
|
||
|
ejabberdauth_LDADD = $(LIBS) $(OPENSSL_LIBS)
|
||
|
|