mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
with multiple versions of the autotools suite. Make generated g-wrap sources depend on config.status. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7837 57a11ea4-9604-0410-9ed3-97b8803252fd
38 lines
564 B
Makefile
38 lines
564 B
Makefile
# cgi-bin Makefile.am file.
|
|
|
|
|
|
bin_PROGRAMS = hello hello2 fastcgi-hello hello3 gnc-server
|
|
|
|
EXTRA_DIST = .cvsignore
|
|
|
|
AM_CFLAGS = \
|
|
-I../../engine -I${srcdir}/../../engine \
|
|
-I../../backend/file -I${srcdir}/../../backend/file \
|
|
${GLIB_CFLAGS}
|
|
|
|
LDADD = \
|
|
../../engine/libgncengine.la \
|
|
-lxml -lghttp -lglib -lfcgi -ldl
|
|
|
|
hello_SOURCES = \
|
|
hello.c
|
|
|
|
hello2_SOURCES = \
|
|
hello2.c
|
|
|
|
hello3_SOURCES = \
|
|
hello3.c
|
|
|
|
fastcgi_hello_SOURCES = \
|
|
fastcgi-hello.c
|
|
|
|
gnc_server_SOURCES = \
|
|
gnc-server.c
|
|
|
|
noinst_HEADERS =
|
|
|
|
|
|
EXTRA_DIST += \
|
|
.cvsignore \
|
|
README
|