diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2010-11-12 22:15:16 +0200 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2010-11-12 22:15:16 +0200 |
| commit | 19e231bbdaef792dce22100012b504e2fb72f971 (patch) | |
| tree | 011823e7b1b882972eaff7c4f3a6b18571030e4a /src/bin/pg_config | |
| parent | d6754f67b08ad6a05640fc5d9d97c6f225512ea0 (diff) | |
| download | postgresql-19e231bbdaef792dce22100012b504e2fb72f971.tar.gz | |
Improved parallel make support
Replace for loops in makefiles with proper dependencies. Parallel
make can now span across directories. Also, make -k and make -q work
properly.
GNU make 3.80 or newer is now required.
Diffstat (limited to 'src/bin/pg_config')
| -rw-r--r-- | src/bin/pg_config/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_config/Makefile b/src/bin/pg_config/Makefile index 732144dde6..c7e5a02374 100644 --- a/src/bin/pg_config/Makefile +++ b/src/bin/pg_config/Makefile @@ -31,9 +31,9 @@ override CPPFLAGS += -DVAL_LDFLAGS_EX="\"$(LDFLAGS_EX)\"" override CPPFLAGS += -DVAL_LDFLAGS_SL="\"$(LDFLAGS_SL)\"" override CPPFLAGS += -DVAL_LIBS="\"$(LIBS)\"" -all: submake-libpgport pg_config +all: pg_config -pg_config: $(OBJS) +pg_config: $(OBJS) | submake-libpgport $(CC) $(CFLAGS) $(OBJS) $(LDFLAGS) $(LDFLAGS_EX) $(LIBS) -o $@$(X) install: all installdirs |
