diff options
Diffstat (limited to 'src/backend/access/common')
| -rw-r--r-- | src/backend/access/common/Makefile | 43 | ||||
| -rw-r--r-- | src/backend/access/common/Makefile.inc | 16 |
2 files changed, 43 insertions, 16 deletions
diff --git a/src/backend/access/common/Makefile b/src/backend/access/common/Makefile new file mode 100644 index 0000000000..e199a40bca --- /dev/null +++ b/src/backend/access/common/Makefile @@ -0,0 +1,43 @@ +#------------------------------------------------------------------------- +# +# Makefile-- +# Makefile for access/common +# +# IDENTIFICATION +# $Header: /cvsroot/pgsql/src/backend/access/common/Makefile,v 1.1 1996/10/27 09:45:49 bryanh Exp $ +# +#------------------------------------------------------------------------- + +SRCDIR = ../../.. +include ../../../Makefile.global + +INCLUDE_OPT = -I../.. \ + -I../../port/$(PORTNAME) \ + -I../../include \ + -I../../../include + +CFLAGS+=$(INCLUDE_OPT) + +OBJS = heaptuple.o heapvalid.o indextuple.o indexvalid.o printtup.o \ + scankey.o tupdesc.o + +all: SUBSYS.o + +SUBSYS.o: $(OBJS) + $(LD) -r -o SUBSYS.o $(OBJS) + +heapvalid.o tupdesc.o: ../../fmgr.h + +../../fmgr.h: + $(MAKE) -C ../.. fmgr.h + +dep: ../../fmgr.h + $(CC) -MM $(INCLUDE_OPT) *.c >depend + +clean: + rm -f SUBSYS.o $(OBJS) + +ifeq (depend,$(wildcard depend)) +include depend +endif + diff --git a/src/backend/access/common/Makefile.inc b/src/backend/access/common/Makefile.inc deleted file mode 100644 index 5d5dd47627..0000000000 --- a/src/backend/access/common/Makefile.inc +++ /dev/null @@ -1,16 +0,0 @@ -#------------------------------------------------------------------------- -# -# Makefile.inc-- -# Makefile for access/common -# -# Copyright (c) 1994, Regents of the University of California -# -# -# IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/access/common/Attic/Makefile.inc,v 1.1.1.1 1996/07/09 06:21:09 scrappy Exp $ -# -#------------------------------------------------------------------------- - -SUBSRCS+= heaptuple.c heapvalid.c indextuple.c indexvalid.c printtup.c \ - scankey.c tupdesc.c - |
