mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-20 11:48:30 -06:00
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11565 57a11ea4-9604-0410-9ed3-97b8803252fd
17 lines
309 B
Makefile
17 lines
309 B
Makefile
noinst_LTLIBRARIES = libgncglib.la
|
|
|
|
DUMMYSRCS=dummy.c
|
|
REALSRCS=gkeyfile.c gkeyfile.h gutils26.c gutils26.h
|
|
|
|
if HAVE_GLIB26
|
|
libgncglib_la_SOURCES = $(DUMMYSRCS)
|
|
else
|
|
libgncglib_la_SOURCES = $(REALSRCS)
|
|
endif
|
|
|
|
libgncglib_la_LIBADD = ${GLIB_LIBS}
|
|
|
|
AM_CFLAGS = ${GLIB_CFLAGS}
|
|
|
|
EXTRA_DIST=$(DUMMYSRCS) $(REALSRCS)
|