mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
'lib' is also being used by the cmake build, so there was a theoretical risk for file conflicts. The new name is 'borrowed'.
20 lines
485 B
Makefile
20 lines
485 B
Makefile
noinst_LTLIBRARIES = libgnc-goffice.la
|
|
|
|
REALSRCS = go-optionmenu.c \
|
|
go-charmap-sel.c \
|
|
go-glib-extras.c
|
|
REALHDRS = go-optionmenu.h \
|
|
go-charmap-sel.h \
|
|
go-glib-extras.h
|
|
|
|
libgnc_goffice_la_SOURCES = ${REALSRCS}
|
|
noinst_HEADERS = ${REALHDRS}
|
|
|
|
libgnc_goffice_la_LIBADD = $(GTK_LIBS) \
|
|
${LIBXML2_LIBS}
|
|
|
|
AM_CPPFLAGS = $(GTK_CFLAGS) \
|
|
${LIBXML2_CFLAGS}
|
|
|
|
EXTRA_DIST = $(REALSRCS) $(REALHDRS) CMakeLists.txt
|