Use configure dir only if present.

This commit is contained in:
hjp 2001-03-19 22:39:28 +00:00
parent 56bd5eb852
commit 0e3c5c7957
1 changed files with 5 additions and 0 deletions

View File

@ -1,6 +1,7 @@
include GNUmakevars include GNUmakevars
CONFDIR=../../configure CONFDIR=../../configure
CONFDIR_exists=$(shell [ -d $(CONFDIR) ] && echo ok)
all: configure fact all: configure fact
@ -20,9 +21,13 @@ install: $(BINDIR) $(BINDIR)/fact
customize: configure customize: configure
sh ./configure sh ./configure
ifeq ($(CONFDIR_exists),ok)
configure: $(CONFDIR)/start $(CONFDIR)/perl $(CONFDIR)/finish configure: $(CONFDIR)/start $(CONFDIR)/perl $(CONFDIR)/finish
cat $^ > $@ cat $^ > $@
endif
$(BINDIR): $(BINDIR):
mkdir -p $@ mkdir -p $@