From 76b7596817c622e8270f798c2f0dbe3297842f42 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Fri, 18 Jan 2002 00:24:33 +0000 Subject: [PATCH] make: Add new values to ALL and MEMBER instead of setting them --- make/exe.mk | 1 - make/header.mk | 3 +-- make/scripts.mk | 2 +- make/so.mk | 2 +- make/tools.mk | 3 +-- 5 files changed, 4 insertions(+), 7 deletions(-) diff --git a/make/exe.mk b/make/exe.mk index 4c13a286..2f82ed25 100644 --- a/make/exe.mk +++ b/make/exe.mk @@ -4,7 +4,6 @@ # $Id$ EXE = $(ALL) - include $(MODDIR)/make/defs.mk include $(MODDIR)/make/rules.mk clean: execlean localclean diff --git a/make/header.mk b/make/header.mk index 3fc28d56..0e41d2d0 100644 --- a/make/header.mk +++ b/make/header.mk @@ -4,8 +4,7 @@ # $Id$ include $(MODDIR)/make/defs.mk -ALL = $(LIBDIR) $(PREREQ_DONE) $(INST_HDRS) +ALL += $(LIBDIR) $(PREREQ_DONE) $(INST_HDRS) include $(MODDIR)/make/rules.mk clean: objclean textclean localclean install: $(ALL) -all: diff --git a/make/scripts.mk b/make/scripts.mk index 25135d7e..3a96cda1 100644 --- a/make/scripts.mk +++ b/make/scripts.mk @@ -3,7 +3,7 @@ # contact@jannet.de # $Id$ -ALL = $(SCRIPTS) +ALL += $(SCRIPTS) include $(MODDIR)/make/defs.mk include $(MODDIR)/make/rules.mk clean:allclean localclean doneclean textclean diff --git a/make/so.mk b/make/so.mk index bc1c444c..fd035efc 100644 --- a/make/so.mk +++ b/make/so.mk @@ -4,7 +4,7 @@ # $Id$ include $(MODDIR)/make/defs.mk -ALL = $(SHOBJS) +ALL += $(SHOBJS) LDFLAGS := $(LDFLAGS) -shared include $(MODDIR)/make/rules.mk clean: objclean textclean localclean diff --git a/make/tools.mk b/make/tools.mk index 390d3c5c..8b34fb84 100644 --- a/make/tools.mk +++ b/make/tools.mk @@ -4,8 +4,7 @@ # $Id$ include $(MODDIR)/make/defs.mk -ALL = $(LIBDIR) $(PREREQ_DONE) $(INST_HDRS) $(MEMBERS) +ALL += $(LIBDIR) $(PREREQ_DONE) $(INST_HDRS) $(MEMBERS) include $(MODDIR)/make/rules.mk clean: objclean textclean localclean install: $(ALL) -all: $(ALL)