aboutsummaryrefslogtreecommitdiff
path: root/src/mk/port/postgres.mk.sparc
diff options
context:
space:
mode:
Diffstat (limited to 'src/mk/port/postgres.mk.sparc')
-rw-r--r--src/mk/port/postgres.mk.sparc38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/mk/port/postgres.mk.sparc b/src/mk/port/postgres.mk.sparc
deleted file mode 100644
index 2b9cd788a04..00000000000
--- a/src/mk/port/postgres.mk.sparc
+++ /dev/null
@@ -1,38 +0,0 @@
-#-------------------------------------------------------------------------
-#
-# postgres.mk.sparc--
-# SUN SPARC/SunOS 4.x specific rules and variables
-#
-# Copyright (c) 1994-5, Regents of the University of California
-#
-# $Id: postgres.mk.sparc,v 1.1.1.1 1996/07/09 06:22:20 scrappy Exp $
-#
-#-------------------------------------------------------------------------
-ifndef MK_PORT
-MK_PORT= sparc
-
-# cc won't work!
-CC= gcc
-
-# the ar on SunOs is dumb, can't use the s option
-AROPT= cq
-
-INSTALL= /usr/bin/install
-RANLIB= /usr/bin/ranlib
-
-#
-# for postgres.user.mk
-#
-ifeq ($(CC), cc)
-CFLAGS_SL= -PIC
-else
-CFLAGS_SL= -fPIC
-endif
-
-SLSUFF= .so
-
-%.so: %.o
- $(LD) -dc -dp -Bdynamic -o $(objdir)/$(@F) $(objdir)/$(<F)
-
-
-endif