Create the GNUSTEP_MAKEFILES/Master and GNUSTEP_MAKEFILES/Instance dirs,

and install rpm.make, source-distribution.make, and Master/rules.make
into the Master dir


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@12280 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2002-01-30 16:50:17 +00:00
parent 68c52f75e5
commit 1a96896434

View file

@ -82,10 +82,13 @@ MAKE_FILES = aggregate.make application.make bundle.make service.make \
palette.make gswapp.make gswbundle.make clibrary.make \
documentation.make \
java-executable.template java-tool.make framework.make \
source-distribution.make rpm.make \
spec-rules.template spec-debug-rules.template \
spec-debug-alone-rules.template
MASTER_MAKE_FILES = source-distribution.make rpm.make rules.make
INSTANCE_MAKE_FILES =
all: generated-files which_lib$(EXEEXT)
which_lib$(EXEEXT): which_lib.c
@ -97,6 +100,8 @@ install: all
$(makedir)/$(GNUSTEP_TARGET_CPU) \
$(makedir)/$(GNUSTEP_TARGET_DIR) \
$(makedir)/Additional \
$(makedir)/Master \
$(makedir)/Instance \
$(tooldir) \
$(GNUSTEP_SYSTEM_ROOT)/share \
$(GNUSTEP_SYSTEM_ROOT)/Apps \
@ -150,6 +155,12 @@ install: all
for f in $(MAKE_FILES); do \
$(INSTALL_DATA) $(srcdir)/$$f $(makedir); \
done
for f in $(MASTER_MAKE_FILES); do \
$(INSTALL_DATA) $(srcdir)/Master/$$f $(makedir)/Master; \
done
for f in $(INSTANCE_MAKE_FILES); do \
$(INSTALL_DATA) $(srcdir)/Instance/$$f $(makedir)/Instance; \
done
$(INSTALL_DATA) executable.template $(makedir)
$(INSTALL_DATA) $(srcdir)/config.site $(GNUSTEP_SYSTEM_ROOT)/share
$(INSTALL_DATA) config.make $(makedir)/$(GNUSTEP_TARGET_DIR)