OSDN Git Service

Work on getting the i386_solaris compile to work ...
authorMarc G. Fournier <scrappy@hub.org>
Tue, 13 Jan 1998 15:00:22 +0000 (15:00 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Tue, 13 Jan 1998 15:00:22 +0000 (15:00 +0000)
src/backend/port/i386_solaris/Makefile [deleted file]
src/backend/port/tas/i386_solaris.s [moved from src/backend/port/i386_solaris/tas.s with 100% similarity]

diff --git a/src/backend/port/i386_solaris/Makefile b/src/backend/port/i386_solaris/Makefile
deleted file mode 100644 (file)
index 8a2a579..0000000
+++ /dev/null
@@ -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
-