targets-tools.mk, tools.mk: Split up tools.mk into tools.mk and targets-tools.mk

This commit is contained in:
Jan Lindemann 2005-07-31 12:10:46 +00:00 committed by Jan Lindemann
commit 667b14e70e
2 changed files with 12 additions and 6 deletions

11
make/targets-tools.mk Normal file
View file

@ -0,0 +1,11 @@
# generic utility modules
# (c) 2001 jannet it services
# contact@jannet.de
# $Id$
ALL += $(LIBDIR) $(PREREQ_DONE) $(LOCAL_HDR) $(LOCAL_EXE_SH) $(MEMBERS)
include $(MODDIR)/make/rules.mk
clean: objclean textclean localclean
install: $(ALL)
$(LIB_SO): $(OBJ)
all: $(LIB_SO)

View file

@ -4,9 +4,4 @@
# $Id$
include $(MODDIR)/make/defs.mk
ALL += $(LIBDIR) $(PREREQ_DONE) $(LOCAL_HDR) $(LOCAL_EXE_SH) $(MEMBERS)
include $(MODDIR)/make/rules.mk
clean: objclean textclean localclean
install: $(ALL)
$(LIB_SO): $(OBJ)
all: $(LIB_SO)
include $(MODDIR)/make/targets-tools.mk