diff options
author | dgaudet <dgaudet@13f79535-47bb-0310-9956-ffa450edef68> | 2000-03-02 08:19:17 +0000 |
---|---|---|
committer | dgaudet <dgaudet@13f79535-47bb-0310-9956-ffa450edef68> | 2000-03-02 08:19:17 +0000 |
commit | c1fc04bfb2212b8e5b5c27ff4d47bc0b6b14d0b4 (patch) | |
tree | 91d1f4e3b12baec9a0a51052f7fa7dda5c4a9019 | |
parent | 52096a7db75782bba2e8d66ec3939ca9165e823a (diff) | |
download | libapr-c1fc04bfb2212b8e5b5c27ff4d47bc0b6b14d0b4.tar.gz |
fix an dependency ordering problem which shows up when you use "make -j2
MAKE='make -j2'" on an SMP box.
it's still not right if Makefile itself is out of date... i forget the
trick to do that right.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59669 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index a68388a65..5866f19fc 100644 --- a/Makefile.in +++ b/Makefile.in @@ -40,9 +40,9 @@ LIBAPR = @LIBPREFIX@apr.a # Rules for building specific targets, starting with 'all' for # building the entire package. # -all: Makefile $(MODULES) subdirs $(LIBAPR) +all: Makefile $(LIBAPR) -$(LIBAPR): +$(LIBAPR): $(MODULES) subdirs @rm -rf objs @mkdir objs @rm -f $@ |