2001-07-06 13:12:14 +00:00
|
|
|
# generic utility modules
|
|
|
|
|
# (c) 2001 jannet it services
|
|
|
|
|
# contact@jannet.de
|
|
|
|
|
# $Id$
|
|
|
|
|
|
2006-08-16 14:53:49 +00:00
|
|
|
TOPDIR = ..
|
2005-05-07 16:44:31 +00:00
|
|
|
|
2006-08-16 14:53:49 +00:00
|
|
|
include $(TOPDIR)/make/proj.mk
|
2002-07-02 10:12:06 +00:00
|
|
|
include $(MODDIR)/make/make.mk
|
2011-02-20 14:15:22 +00:00
|
|
|
ifneq ($(MAKECMDGOALS),install-links)
|
|
|
|
|
ifneq ($(MAKECMDGOALS),do-install-links)
|
2009-07-11 14:00:35 +00:00
|
|
|
include $(MODDIR)/make/dirs.mk
|
2011-02-20 14:15:22 +00:00
|
|
|
endif
|
|
|
|
|
endif
|
2009-08-10 08:47:10 +00:00
|
|
|
|
|
|
|
|
ifeq ($(TARGET),mingw)
|
|
|
|
|
install: $(INSTALL_MAKEDIR)/winres.rc.tmpl
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
$(INSTALL_MAKEDIR)/%.tmpl: %.tmpl $(TOPDIR)/dir_install_MAKE.done
|
2018-10-23 17:39:30 +00:00
|
|
|
$(INSTALL) -o $(MAKEOWNER) -g $(MAKEGROUP) -m $(MAKEMODE) $< $@A
|
|
|
|
|
|
2018-11-13 13:53:00 +00:00
|
|
|
grep-vars:
|
2018-10-23 17:39:30 +00:00
|
|
|
@sed '/^ *[A-Z]/!d; s/^[ ]*//g; s/[=+?:].*//g; s/[ ]*//g' *.mk | sort -u
|