Initial revision
authorTom Tromey <tromey@redhat.com>
Thu, 23 Nov 1995 01:36:20 +0000 (01:36 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 23 Nov 1995 01:36:20 +0000 (01:36 +0000)
NEWS [new file with mode: 0644]
libscripts.am [new file with mode: 0644]

diff --git a/NEWS b/NEWS
new file mode 100644 (file)
index 0000000..d5b5942
--- /dev/null
+++ b/NEWS
@@ -0,0 +1,6 @@
+New in 0.20:
+* Options --use-deps and --include-deps for automatic dependency tracking.
+* More documentation
+* New variables DATA and PACKAGEDATA
+* SCRIPTS installed using $(INSTALL_SCRIPT)
+* No longer uses double-colon rules
diff --git a/libscripts.am b/libscripts.am
new file mode 100644 (file)
index 0000000..6c80b77
--- /dev/null
@@ -0,0 +1,11 @@
+install-libscripts: $(LIBSCRIPTS)
+       $(top_srcdir)/mkinstalldirs $(libexecdir)
+       for p in $(LIBSCRIPTS); do
+         $(INSTALL_SCRIPT) $$p $(libexecdir)/`echo $$p|sed '$(transform)'`;
+       done
+
+uninstall-libscripts:
+       for p in $(LIBSCRIPTS); do \
+         rm -f $(libexecdir)/`echo $$p|sed '$(transform)'`; \
+       done
+