summaryrefslogtreecommitdiff
blob: c201c96de0f65546ba4318eb9b0d46e976399e0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
--- Makefile	2008-09-08 08:37:20.000000000 -0400
+++ Makefile.dieharder	2010-07-25 07:09:24.000000000 -0400
@@ -734,23 +734,20 @@
 # presume the simplest of dependencies and remake if includes change
 # for example.
 #========================================================================
-all: $(LIBTIME) $(PROGTIME) $(INCTIME)
+all: $(LIBTIME) $(INCTIME) $(PROGTIME)
 
 # This is not, actually, a particularly useful toplevel target.  To
 # work correctly it also would require a full parsing of all
 # lower level dependencies.  I'm leaving it in for the moment just
 # to have a default target at the toplevel that CAN be used to test.
 $(LIBTIME):
-	(cd $(LIBRARY); \
-	make)
+	+$(MAKE) -C $(LIBRARY)
 
 $(INCTIME):
-	(cd include; \
-	make)
+	+$(MAKE) -C include
 
 $(PROGTIME):
-	(cd $(PROGRAM); \
-	make)
+	+$(MAKE) -C $(PROGRAM)
 
 $(ABS): Makefile
 	cat $(ABS) | \