summaryrefslogtreecommitdiff
blob: 910771adcdc5eafde4354d343f8ca7e8c002e373 (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
From: Nathan Phillip Brink <binki@gentoo.org>
Subject: Fix issues of langstrs.h not being built before modules and
	tools are, hopefully fixing parallel make.

diff -r ad64cfd2cacc -r b323b647fe91 Makefile
--- a/Makefile	Mon Jun 20 22:29:07 2011 -0400
+++ b/Makefile	Tue Jun 21 00:42:59 2011 -0400
@@ -115,17 +115,17 @@
 	$(CC) $(LFLAGS) $(OBJS) version.o $(MODLIB) $(LIBS) -o $@
 
 ifneq ($(STATIC_MODULES),)
-modules:
+modules: langstrs.h
 	@$(MAKE) -C modules all-static CFLAGS="$(CFLAGS)"
 else
-modules:
+modules: langstrs.h
 	@$(MAKE) -C modules all-dynamic CFLAGS="$(CFLAGS)"
 endif
 
 languages:
 	@$(MAKE) -C lang CFLAGS="$(CFLAGS)"
 
-tools: services.h
+tools: langstrs.h services.h
 	@$(MAKE) -C tools CFLAGS="$(CFLAGS)"