mirror of
https://github.com/postgres/postgres.git
synced 2026-04-13 13:07:48 -04:00
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
23 lines
433 B
Makefile
23 lines
433 B
Makefile
|
|
#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 $@ $<
|
|
|