Work on getting the i386_solaris compile to work ...

This commit is contained in:
Marc G. Fournier 1998-01-13 15:00:22 +00:00
parent 1fd402be54
commit 6361ac88b9
2 changed files with 0 additions and 34 deletions

View File

@ -1,34 +0,0 @@
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for port/i386_solaris
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/i386_solaris/Attic/Makefile,v 1.4 1997/12/20 00:25:41 scrappy Exp $
#
#-------------------------------------------------------------------------
SRCDIR = ../../..
include ../../../Makefile.global
INCLUDE_OPT = -I../..
CFLAGS+=$(INCLUDE_OPT)
OBJS = tas.o
all: SUBSYS.o
SUBSYS.o: $(OBJS)
$(LD) -r -o SUBSYS.o $(OBJS)
depend dep:
$(CC) -MM $(INCLUDE_OPT) *.c >depend
clean:
rm -f SUBSYS.o $(OBJS)
ifeq (depend,$(wildcard depend))
include depend
endif