summaryrefslogtreecommitdiff
path: root/src/mk/port/postgres.mk.irix5
diff options
context:
space:
mode:
Diffstat (limited to 'src/mk/port/postgres.mk.irix5')
-rw-r--r--src/mk/port/postgres.mk.irix553
1 files changed, 0 insertions, 53 deletions
diff --git a/src/mk/port/postgres.mk.irix5 b/src/mk/port/postgres.mk.irix5
deleted file mode 100644
index 85a7782449..0000000000
--- a/src/mk/port/postgres.mk.irix5
+++ /dev/null
@@ -1,53 +0,0 @@
-#-------------------------------------------------------------------------
-#
-# postgres.mk.irix5--
-# IRIX5 specific rules and variables. This port is contributed by
-# Paul 'Shag' Walmsley <ccshag@everest.cclabs.missouri.edu>.
-#
-# Copyright (c) 1994-5, Regents of the University of California
-#
-# postgres.mk.sparc_solaris,v 1.5 1995/04/30 07:51:21 andrew Exp
-#
-#-------------------------------------------------------------------------
-ifndef MK_PORT
-MK_PORT= irix5
-
-CC= cc
-
-#
-# for postgres.mk
-#
-CFLAGS_BE+= -DUSE_POSIX_SIGNALS
-
-# RANLIB is not used on IRIX 5
-RANLIB=touch
-
-INSTALL=/sbin/bsdinst
-
-INSTLOPTS= -m 444
-INSTL_EXE_OPTS= -m 555
-INSTL_LIB_OPTS= -m 664
-
-#
-# Random things that must be passed everywhere to enable
-# everything to compile. :-/
-#
-CFLAGS_BE+= -DSYSV_DIRENT
-
-LD_ADD+= $(LDADD_BE)
-
-SLSUFF= .so
-
-%.so: %.o
- $(LD) -G -Bdynamic -o $(objdir)/$(@F) $(objdir)/$(<F)
-
-#
-# for postgres.shell.mk
-#
-DASH_N=''
-BACKSLASH_C='\\\\c'
-
-endif
-
-
-