diff options
| author | Marc G. Fournier <scrappy@hub.org> | 1997-04-12 10:33:10 +0000 |
|---|---|---|
| committer | Marc G. Fournier <scrappy@hub.org> | 1997-04-12 10:33:10 +0000 |
| commit | 09a5dabc30e979431cddec7466d079e8c7d76dcd (patch) | |
| tree | a08fbea5b60222851bd7193938e5ef70a8d90351 /src/makefiles/Makefile.hpux | |
| parent | 7113e880b8e97e1b26dbbf91a025263311eb6812 (diff) | |
| download | postgresql-09a5dabc30e979431cddec7466d079e8c7d76dcd.tar.gz | |
Remove port specific Makefile 'targets' (ie. shared libraries) from
Makefile.global and move them to seperate 'include' makefiles
Over time, should become even more port specific:
ie. Makefile.BSD44_derived should be broken down into netbsd/freebsd
specific ports
Diffstat (limited to 'src/makefiles/Makefile.hpux')
| -rw-r--r-- | src/makefiles/Makefile.hpux | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/makefiles/Makefile.hpux b/src/makefiles/Makefile.hpux new file mode 100644 index 0000000000..9b530f7681 --- /dev/null +++ b/src/makefiles/Makefile.hpux @@ -0,0 +1,23 @@ + +#ifdef ENFORCE_ALIGNMENT +# CFLAGS_BE= -DNOFIXADE +#else +# HPUX_VERS:= $(shell uname -r) +# HPUX_MAJOR= ${HPUX_VERS:R:E} +# HPUX_MINOR= ${HPUX_VERS:E} +# ifeq ($(HPUX_MAJOR), 08) +# CFLAGS_BE+= +u -DHP_S500_ALIGN +# LDFLAGS_BE+= +u +# else +# ifeq ($(HPUX_MAJOR), 09) +# ifeq ($(CC), cc) +# CFLAGS_BE+= +u4 +# LDFLAGS_BE+= +u4 +# endif +# endif +# endif +#endif + +%.sl: %.o + $(LD) -b -o $@ $< + |
