jw-pkg/make/dirs.mk
Jan Lindemann 95c0112176 defs.mk, dirs.mk: Follow FEEDFS_DIR change
Change FEEDFS_DIR from proj/dspc/src/feedfs to proj/feedfs
2009-05-27 11:56:26 +00:00

33 lines
471 B
Makefile

# generic utility modules
# (c) 2001 jannet it services
# contact@jannet.de
# $Id$
.NOTPARALLEL:
include $(MODDIR)/make/defs.mk
ifndef SUBDIRS
all:
subdirs:
clean distclean:
.DEFAULT:
install:
else
all subdirs:
$(make_subdirs)
install:
$(make_subdirs_target)
clean:
rm -rf $(TEXTCLEAN) $(CLEAN) dist *.done *~ .*.swp *.tmp core *.rep
$(make_subdirs_target)
distclean: rmdistclean clean
rmdistclean:
rm -rf $(DISTCLEAN)
.DEFAULT:
$(make_subdirs_target)
endif