From f5dc6557f3074640f978efa62616868e0029cf93 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 24 Jan 1995 15:59:26 +0000 Subject: [PATCH] Added -ansi to CFLAGS. --- Makefile | 3 ++- bfile/Makefile | 2 +- isam/Makefile | 4 ++-- rset/Makefile | 4 ++-- util/Makefile | 4 ++-- 5 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 481bc6a..18b412c 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,12 @@ # 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.24 1995-01-24 15:59:26 adam Exp $ SHELL=/bin/sh MAKE=make SUBDIR=util str bfile dfa dict isam rset it base +CFLAGS=-Wall -g -pedantic -ansi all: for i in $(SUBDIR); do cd $$i; if $(MAKE) CFLAGS="$(CFLAGS)"; then cd ..; else exit 1; fi; done diff --git a/bfile/Makefile b/bfile/Makefile index 5c80307..52fff4d 100644 --- a/bfile/Makefile +++ b/bfile/Makefile @@ -1,7 +1,7 @@ SHELL=/bin/sh INCLUDE=-I../include TPROG=btest -CFLAGS=-g -Wall -pedantic +CFLAGS=-g -Wall -pedantic -ansi DEFS=$(INCLUDE) LIB=../lib/bfile.a PO = bfile.o mfile.o diff --git a/isam/Makefile b/isam/Makefile index 341ee3e..51dd3d9 100644 --- a/isam/Makefile +++ b/isam/Makefile @@ -1,11 +1,11 @@ # Copyright (C) 1994, Index Data I/S # All rights reserved. # Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile,v 1.11 1994-09-27 20:03:50 quinn Exp $ +# $Id: Makefile,v 1.12 1995-01-24 16:01:34 adam Exp $ SHELL=/bin/sh INCLUDE=-I../include -CFLAGS=-g -Wall -pedantic +CFLAGS=-g -Wall -pedantic -ansi DEFS=$(INCLUDE) LIB=../lib/isam.a PO = isam.o isutil.o rootblk.o memory.o physical.o diff --git a/rset/Makefile b/rset/Makefile index 2ad74d4..d68c3db 100644 --- a/rset/Makefile +++ b/rset/Makefile @@ -1,11 +1,11 @@ # Copyright (C) 1994, Index Data I/S # All rights reserved. # Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile,v 1.2 1994-11-04 13:21:28 quinn Exp $ +# $Id: Makefile,v 1.3 1995-01-24 16:01:44 adam Exp $ SHELL=/bin/sh INCLUDE=-I../include -CFLAGS=-g -Wall -pedantic +CFLAGS=-g -Wall -pedantic -ansi DEFS=$(INCLUDE) LIB=../lib/rset.a PROG= diff --git a/util/Makefile b/util/Makefile index 733cd68..94db635 100644 --- a/util/Makefile +++ b/util/Makefile @@ -1,12 +1,12 @@ # Copyright (C) 1994, Index Data I/S # All rights reserved. # Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile,v 1.15 1994-10-04 17:47:09 adam Exp $ +# $Id: Makefile,v 1.16 1995-01-24 16:01:50 adam Exp $ SHELL=/bin/sh INCLUDE=-I../include TPROG=opt-test -CFLAGS=-g -Wall -pedantic +CFLAGS=-g -Wall -pedantic -ansi DEFS=$(INCLUDE) LIB=../lib/util.a PO = options.o xmalloc.o log.o res.o alexpath.o common.o -- 1.7.10.4