1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

* Makefile.in (dist-dir): New target for new dist system.

(manifest): Deleted.
* PLUGIN/this.configure (aux_files): Removed PLUGIN; it's a
directory, and needs special treatment in the dist-dir target.
This commit is contained in:
Jim Blandy 1996-08-01 08:23:10 +00:00
parent 2d26def019
commit a45b373305

View file

@ -54,13 +54,20 @@ uninstall:
-rmdir $(libdir) -rmdir $(libdir)
SUBDIR=. # The `dist' target in the top-level Makefile uses this `dist-dir'
manifest: # target to select the appropriate files for distribution from the
srcdir=./$(SUBDIR) ; \ # directory containing this Makefile.
. $(SUBDIR)/PLUGIN/this.configure; \ .PHONY: dist-dir
for file in $$scm_files $$aux_files ; \ dist-dir:
do echo $(SUBDIR)/$$file ; \ mkdir ${DISTDIR}
for f in ${scm_files} ${aux_files}; do \
ln ${srcdir}/$$f ${DISTDIR}; \
done done
mkdir ${DISTDIR}/PLUGIN
for f in REQ greet split.sed this.configure; do \
ln ${srcdir}/PLUGIN/$$f ${DISTDIR}/PLUGIN; \
done
clean: clean: