aboutsummaryrefslogtreecommitdiff
path: root/romfs
diff options
context:
space:
mode:
authorThomas Huth <thuth@linux.vnet.ibm.com>2011-09-06 14:38:26 +0200
committerThomas Huth <thuth@linux.vnet.ibm.com>2011-10-12 12:50:05 +0200
commitf227b3301221bb1bbcd30d4739115a875fb1c434 (patch)
tree3f37a4ced8e7b35b5df85db521bd65abef8fc4b1 /romfs
parent1645f050f8a77040c1db0617d729615117fb089b (diff)
downloadSLOF-f227b3301221bb1bbcd30d4739115a875fb1c434.zip
SLOF-f227b3301221bb1bbcd30d4739115a875fb1c434.tar.gz
SLOF-f227b3301221bb1bbcd30d4739115a875fb1c434.tar.bz2
Cleaned up Makefiles
Replaced "make" by "$(MAKE)" to be able to built in parallel, fixed the indentation of some rules and removed some unused targets. Signed-off-by: Thomas Huth <thuth@linux.vnet.ibm.com>
Diffstat (limited to 'romfs')
-rw-r--r--romfs/tools/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/romfs/tools/Makefile b/romfs/tools/Makefile
index 8f399a8..f86803d 100644
--- a/romfs/tools/Makefile
+++ b/romfs/tools/Makefile
@@ -31,7 +31,7 @@ build_romfs: $(OBJS)
$(HOSTCC) $(HOSTCFLAGS) $(FLAG) -o $@ $^
testing: build_romfs
- make -C test
+ $(MAKE) -C test
%.o: %.c
$(HOSTCC) $(CPPFLAGS) $(HOSTCFLAGS) $(FLAG) -c $< -o $@