aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorVincent Lefevre <vincent@vinc17.net>2015-12-15 13:47:07 +0100
committerVincent Lefevre <vincent@vinc17.net>2015-12-15 13:47:07 +0100
commitd1e15514aaf84bec6fddeaa2bd7b4027b175be6e (patch)
tree686d759a9aa26b6d223bf0c9e4fe4e00c0264165 /Makefile
parent1c2dfa1f4bb162678c293788678f6790514cb7ba (diff)
downloadtinycc-d1e15514aaf84bec6fddeaa2bd7b4027b175be6e.tar.gz
tinycc-d1e15514aaf84bec6fddeaa2bd7b4027b175be6e.tar.bz2
Fixed a dependency (error with make -j8).
Signed-off-by: Vincent Lefevre <vincent@vinc17.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2045978..118c3a5 100644
--- a/Makefile
+++ b/Makefile
@@ -255,7 +255,7 @@ tiny_libmaker$(EXESUF): win32/tools/tiny_libmaker.c
$(CC) -o $@ $< $(CPPFLAGS) $(CFLAGS) $(LDFLAGS)
# TinyCC runtime libraries
-libtcc1.a : FORCE
+libtcc1.a : FORCE $(PROGS)
$(MAKE) -C lib native
if test ! -d $(ARCH); then mkdir $(ARCH); fi
if test ! -L $(ARCH)/$@; then ln -sf ../$@ $(ARCH)/$@; fi