diff options
Diffstat (limited to 'src/mk/port/postgres.mk.irix5')
-rw-r--r-- | src/mk/port/postgres.mk.irix5 | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/mk/port/postgres.mk.irix5 b/src/mk/port/postgres.mk.irix5 new file mode 100644 index 00000000000..560c2beb705 --- /dev/null +++ b/src/mk/port/postgres.mk.irix5 @@ -0,0 +1,49 @@ +#------------------------------------------------------------------------- +# +# 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=/usr/bin/X11/bsdinst + +# +# 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 + + + |