mirror of
https://github.com/frida/tinycc
synced 2024-12-24 05:56:49 +03:00
Fix "make -j test"
The clean-s rule must be run before the tests, not at the same time!
This commit is contained in:
parent
4b46e0ec63
commit
920f773a81
@ -59,7 +59,9 @@ RUN_TCC = $(NATIVE_DEFINES) -run $(TOPSRC)/tcc.c $(TCCFLAGS)
|
||||
DISAS = objdump -d
|
||||
DUMPTCC = (set -x; $(TOP)/tcc -vv; ldd $(TOP)/tcc; exit 1)
|
||||
|
||||
all test : clean-s $(TESTS)
|
||||
all test :
|
||||
$(MAKE) clean-s
|
||||
$(MAKE) $(TESTS)
|
||||
|
||||
hello-exe: ../examples/ex1.c
|
||||
@echo ------------ $@ ------------
|
||||
|
Loading…
Reference in New Issue
Block a user