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/timezone | |
parent | d6754f67b08ad6a05640fc5d9d97c6f225512ea0 (diff) |
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/timezone')
-rw-r--r-- | src/timezone/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/timezone/Makefile b/src/timezone/Makefile index a20ddb043af..2cecaec5e63 100644 --- a/src/timezone/Makefile +++ b/src/timezone/Makefile @@ -35,7 +35,7 @@ endif include $(top_srcdir)/src/backend/common.mk ifeq (,$(with_system_tzdata)) -all: submake-libpgport zic +all: zic endif # We could do this test in the action section: @@ -46,7 +46,7 @@ ifeq (,$(ZIC)) ZIC= ./zic endif -zic: $(ZICOBJS) +zic: $(ZICOBJS) | submake-libpgport $(CC) $(CFLAGS) $(ZICOBJS) $(LDFLAGS) $(LDFLAGS_EX) $(LIBS) -o $@$(X) install: all installdirs |