summaryrefslogtreecommitdiff
path: root/gmodule
diff options
context:
space:
mode:
authorManish Singh <yosh@src.gnome.org>1999-01-20 23:06:30 +0000
committerManish Singh <yosh@src.gnome.org>1999-01-20 23:06:30 +0000
commitc01596714fb7651ddc87576ec7aac19a021ae898 (patch)
tree89f55f0429c0957f1af57fefa10c5a5d007f4c60 /gmodule
parente0015d5a27a7027477f40b04a8dbbe4f562ef25f (diff)
downloadglib-c01596714fb7651ddc87576ec7aac19a021ae898.tar.gz
new file
* HACKING: new file * Makefile.am: since we require automake 1.4 now, ditch the build top-level first and just use SUBDIRS * gmodule/Makefile.am: use noinst_LTLIBRARIES instead of overriding the install rule -Yosh
Diffstat (limited to 'gmodule')
-rw-r--r--gmodule/Makefile.am14
1 files changed, 3 insertions, 11 deletions
diff --git a/gmodule/Makefile.am b/gmodule/Makefile.am
index d334bf5f2..d4094eb62 100644
--- a/gmodule/Makefile.am
+++ b/gmodule/Makefile.am
@@ -19,7 +19,9 @@ include_HEADERS = \
libglib = $(top_builddir)/libglib.la # -lglib
-lib_LTLIBRARIES = libgmodule.la libgplugin_a.la libgplugin_b.la
+lib_LTLIBRARIES = libgmodule.la
+
+noinst_LTLIBRARIES = libgplugin_a.la libgplugin_b.la
libgmodule_la_SOURCES = gmodule.c
libgmodule_la_LDFLAGS = \
@@ -50,15 +52,5 @@ files:
echo $$p; \
done
-install-libLTLIBRARIES: libgmodule.la
- @$(NORMAL_INSTALL)
- $(mkinstalldirs) $(DESTDIR)$(libdir)
- @list='libgmodule.la'; for p in $$list; do \
- if test -f $$p; then \
- echo "$(LIBTOOL) --mode=install $(INSTALL_DATA) $$p $(DESTDIR)$(libdir)/$$p"; \
- $(LIBTOOL) --mode=install $(INSTALL_DATA) $$p $(DESTDIR)$(libdir)/$$p; \
- else :; fi; \
- done
-
release:
$(MAKE) dist distdir=$(PACKAGE)`date +"%y%m%d"`