diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-11-06 17:07:43 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-11-06 17:07:43 +0000 |
commit | 712c8bba8423fe3f206ae03a26ae849e5065da05 (patch) | |
tree | f692e04482b82ddc9199c84d8711853beaf3f0a5 | |
parent | d9ef7e9ec767313273a37fbfe2f4f5ff5aa44089 (diff) | |
download | postgresql-712c8bba8423fe3f206ae03a26ae849e5065da05.tar.gz postgresql-712c8bba8423fe3f206ae03a26ae849e5065da05.zip |
Makefile.ports (copied from makefiles/Makefile.aix) is included before
the default target in GNUmakefile is reached. This patch calls that
default target.
Pete Forman
-rw-r--r-- | src/makefiles/Makefile.aix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/makefiles/Makefile.aix b/src/makefiles/Makefile.aix index 80d949d2e6e..7f14e56ac63 100644 --- a/src/makefiles/Makefile.aix +++ b/src/makefiles/Makefile.aix @@ -24,6 +24,10 @@ POSTGRES_IMP= postgres$(IMPSUFF) MKLDEXPORT=$(top_srcdir)/src/backend/port/aix/mkldexport.sh +.PHONY: default_aix + +default_aix: all + $(POSTGRES_IMP): @echo Making $@ $(MKLDEXPORT) postgres $(bindir) > $@ |