From: Adam Dickmeiss Date: Thu, 1 Sep 1994 17:43:41 +0000 (+0000) Subject: depend rule change. X-Git-Tag: ZEBRA.1.0~884 X-Git-Url: http://sru.miketaylor.org.uk/?a=commitdiff_plain;ds=sidebyside;h=e350729bba130eb3266687ee563a235e1e0248b3;p=idzebra-moved-to-github.git depend rule change. CVS ---------------------------------------------------------------------- --- diff --git a/Makefile b/Makefile index fca43df..5f5f612 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # Copyright (C) 1994, Index Data I/S # All rights reserved. # Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile,v 1.8 1994-09-01 15:36:43 quinn Exp $ +# $Id: Makefile,v 1.9 1994-09-01 17:43:41 adam Exp $ SHELL=/bin/sh SUBDIR=util bfile dict @@ -10,7 +10,7 @@ all: for i in $(SUBDIR); do cd $$i; if make; then cd ..; else exit 1; fi; done dep depend: - for i in $(SUBDIR); do (cd $$i; echo >.depend; make dep); done + for i in $(SUBDIR); do (cd $$i; make dep); done clean: for i in $(SUBDIR); do (cd $$i; make clean); done