summaryrefslogtreecommitdiff
path: root/nautilus-installer
diff options
context:
space:
mode:
authorEric Fischer <eric@src.gnome.org>2001-02-15 21:20:00 +0000
committerEric Fischer <eric@src.gnome.org>2001-02-15 21:20:00 +0000
commit3ed55b9af6c533bd52f8d9ab62f42fd31a674a7c (patch)
tree9b37d806eeec9bd4fefff3d3ea99a42902932a37 /nautilus-installer
parentfec21973c534c20e3e8eec9c6b78e1f5a4f972b2 (diff)
downloadnautilus-3ed55b9af6c533bd52f8d9ab62f42fd31a674a7c.tar.gz
Start building the eazel installer, and put it into its own RPM. (This
* nautilus.spec.in: Start building the eazel installer, and put it into its own RPM. (This should eventually be separate from building nautilus) * nautilus-installer/libtrilobite/Makefile.am: Add a dependency to create the .h files, since gmake complains otherwise.
Diffstat (limited to 'nautilus-installer')
-rw-r--r--nautilus-installer/libtrilobite/Makefile.am22
1 files changed, 21 insertions, 1 deletions
diff --git a/nautilus-installer/libtrilobite/Makefile.am b/nautilus-installer/libtrilobite/Makefile.am
index 696506daf..a31298443 100644
--- a/nautilus-installer/libtrilobite/Makefile.am
+++ b/nautilus-installer/libtrilobite/Makefile.am
@@ -15,6 +15,25 @@ libtrilobite_minimal_a_SOURCES = \
trilobite-md5-tools.c \
$(NULL)
+HDRS = \
+ libtrilobite.h \
+ libtrilobite-service.h \
+ trilobite-core-distribution.h \
+ trilobite-core-messaging.h \
+ trilobite-core-network.h \
+ trilobite-core-utils.h \
+ trilobite-md5-tools.h \
+ trilobite-redirect.h \
+ trilobite-root-client-private.h \
+ trilobite-root-client-public.h \
+ trilobite-root-helper.h \
+ trilobite-service.h \
+ trilobite-service-passwordquery-private.h \
+ trilobite-service-passwordquery-public.h \
+ trilobite-service-private.h \
+ trilobite-service-public.h \
+ $(NULL)
+
INCLUDES= \
-DTRILOBITE_VERSION=\"0.1.0\" \
-I. \
@@ -26,6 +45,7 @@ INCLUDES= \
@XML_CFLAGS@ \
$(NULL)
-$(libtrilobite_minimal_a_SOURCES):
+$(libtrilobite_minimal_a_SOURCES) $(HDRS):
for i in $(top_srcdir)/components/services/trilobite/libtrilobite/*.[ch]; \
do bn=`basename $$i`; rm -f $$bn; ln -s $$i $$bn; done
+