X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=Makefile;h=b1b7b32f2e9bb7c76bf4b98eb8fd0546bddb4ab7;hb=f710512c0c71901f77629de5674177e8ee82e1ba;hp=481bc6a9a31d97de6398781dbb0c77fd6a100412;hpb=f513e774d5502d85c456b8a58eaea6d4851f8eaa;p=idzebra-moved-to-github.git diff --git a/Makefile b/Makefile index 481bc6a..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.23 1994-12-14 11:04:15 quinn Exp $ +# $Id: Makefile,v 1.25 1995-02-06 10:08:31 adam Exp $ SHELL=/bin/sh MAKE=make 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) CFLAGS="$(CFLAGS)"; 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