Setup up the conduit library building better so the files get disted

2001-04-08  JP Rosevear  <jpr@ximian.com>

	* Makefile.am: Setup up the conduit library building better so the
	files get disted

svn path=/trunk/; revision=9205
This commit is contained in:
JP Rosevear
2001-04-08 11:14:27 +00:00
committed by JP Rosevear
parent 2eac67c34c
commit b96649c911
2 changed files with 15 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2001-04-08 JP Rosevear <jpr@ximian.com>
* Makefile.am: Setup up the conduit library building better so the
files get disted
2001-04-06 Federico Mena Quintero <federico@ximian.com>
* e-sexp.c (scanner_config): Added a question mark to the set of

View File

@ -53,19 +53,22 @@ libeutil_la_LIBADD = $(UNICODE_LIBS)
libeutil_static_la_SOURCES = $(libeutil_la_SOURCES)
libeutil_static_la_LDFLAGS = --all-static
pilot_sources = \
e-pilot-map.c \
e-pilot-map.h \
e-pilot-util.c \
e-pilot-util.h
if ENABLE_PILOT_CONDUITS
pl_needed = e-pilot-util.c e-pilot-util.h
pilot_compile = $(pilot_sources)
else
pl_needed =
pilot_compile =
endif
libeconduit_la_SOURCES = \
e-pilot-map.c \
e-pilot-map.h \
$(pl_needed)
libeconduit_la_SOURCES = $(pilot_compile)
libeconduit_static_la_SOURCES = $(libeconduit_la_SOURCES)
libeconduit_static_la_LDFLAGS = --all-static
EXTRA_DIST = $(pilot_sources)