X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=Makefile;h=b1b7b32f2e9bb7c76bf4b98eb8fd0546bddb4ab7;hb=022ffce95f68829422f2cdd366b97747f37c9dff;hp=4f31650c82ae2d25b6b3c473f9a126b28cea3ab7;hpb=4cffe59757ef27b3764029c39415a13a2756e0a1;p=idzebra-moved-to-github.git diff --git a/Makefile b/Makefile index 4f31650..b1b7b32 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,16 @@ # 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.25 1995-02-06 10:08:31 adam Exp $ SHELL=/bin/sh MAKE=make -SUBDIR=util bfile dfa dict isam it +SUBDIR=util str bfile dfa dict isam rset it base +CFLAGS=-Wall -g -pedantic -ansi +CC=gcc 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)" CC="$(CC)"; 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