bin, make, scripts, tmpl/tex: Add include $(MODDIR)/make/ytools.mk

This commit is contained in:
Jan Lindemann 2002-07-20 17:16:40 +00:00 committed by Jan Lindemann
commit 2c52cef605
9 changed files with 18 additions and 2 deletions

View file

@ -4,7 +4,7 @@
# $Id$
PROJECT := ytools
TOPDIR = $(MODDIR)
REQUIRED = inst/pre \
make \
@ -26,3 +26,11 @@ REQUIRED = inst/pre \
VERSION = @PACKAGE_VERSION@
VERSION_STR = \"@PACKAGE_VERSION@\"
DEVELOPMENT = @IS_DEVELOPMENT_VERSION@
ifeq ($(DEVELOPMENT),true)
include $(TOPDIR)/make/cfg_dev.mk
else
include $(TOPDIR)/make/cfg_dist.mk
endif