jw-pkg/make/dirs.mk

33 lines
471 B
Makefile
Raw Normal View History

# generic utility modules
# (c) 2001 jannet it services
# contact@jannet.de
# $Id$
.NOTPARALLEL:
include $(MODDIR)/make/defs.mk
2001-11-06 07:50:14 +00:00
ifndef SUBDIRS
all:
subdirs:
2001-11-06 07:50:14 +00:00
clean distclean:
.DEFAULT:
install:
else
2005-07-30 12:52:36 +00:00
all subdirs:
$(make_subdirs)
install:
$(make_subdirs_target)
clean:
2002-07-25 10:39:55 +00:00
rm -rf $(TEXTCLEAN) $(CLEAN) dist *.done *~ .*.swp *.tmp core *.rep
$(make_subdirs_target)
distclean: rmdistclean clean
rmdistclean:
2002-07-25 10:39:55 +00:00
rm -rf $(DISTCLEAN)
.DEFAULT:
$(make_subdirs_target)
endif