From cca64aeab0133fd05b411e2c4e9ee985b8a8c9f9 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 5 Oct 1994 10:46:15 +0000 Subject: [PATCH] CFLAGS is inherited to make in subdirectories. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4f31650..9fc9039 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,14 @@ # Copyright (C) 1994, Index Data I/S # All rights reserved. # Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile,v 1.17 1994-09-28 13:06:52 adam Exp $ +# $Id: Makefile,v 1.18 1994-10-05 10:46:15 adam Exp $ SHELL=/bin/sh MAKE=make SUBDIR=util bfile dfa dict isam it all: - for i in $(SUBDIR); do cd $$i; if $(MAKE); then cd ..; else exit 1; fi; done + for i in $(SUBDIR); do cd $$i; if $(MAKE) CFLAGS="$(CFLAGS)"; then cd ..; else exit 1; fi; done dep depend: for i in $(SUBDIR); do cd $$i; if $(MAKE) depend; then cd ..; else exit 1; fi; done -- 1.7.10.4