mirror of https://github.com/Gnucash/gnucash
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.
19 lines
396 B
19 lines
396 B
noinst_LTLIBRARIES = libgnc-glib.la
|
|
|
|
DUMMYSRCS = dummy.c
|
|
REALSRCS = gfileutils-2.8.c
|
|
REALHDRS = gfileutils-2.8.h gstdio-2.8.h
|
|
|
|
if HAVE_GLIB_2_8
|
|
libgnc_glib_la_SOURCES = ${DUMMYSRCS}
|
|
else
|
|
libgnc_glib_la_SOURCES = ${REALSRCS}
|
|
noinst_HEADERS = ${REALHDRS}
|
|
endif
|
|
|
|
libgnc_glib_la_LIBADD = ${GLIB26_LIBS}
|
|
|
|
AM_CFLAGS = ${GLIB_CFLAGS}
|
|
|
|
EXTRA_DIST = $(DUMMYSRCS) $(REALSRCS) $(REALHDRS)
|