mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 20:13:32 +01:00
28 lines
430 B
Makefile
28 lines
430 B
Makefile
# generic utility modules
|
|
# (c) 2001 jannet it services
|
|
# contact@jannet.de
|
|
# $Id$
|
|
|
|
include $(MODDIR)/make/defs.mk
|
|
|
|
ifndef SUBDIRS
|
|
all:
|
|
subdirs:
|
|
clean distclean:
|
|
.DEFAULT:
|
|
install:
|
|
else
|
|
all subdirs:
|
|
$(make_subdirs)
|
|
|
|
install 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
|