aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorgrischka <grischka>2009-07-06 21:11:19 +0200
committerunknown <gr@.(none)>2009-07-18 21:54:51 +0200
commit045cff28fe6da98fc020a4a2bf72ffaaf3d48a02 (patch)
treed684cd63cfc304ec463609e7daeec57b6089d775 /Makefile
parent0085c648f6e9f016f937107ce68651987b001ddf (diff)
downloadtinycc-045cff28fe6da98fc020a4a2bf72ffaaf3d48a02.tar.gz
tinycc-045cff28fe6da98fc020a4a2bf72ffaaf3d48a02.tar.bz2
fix asmtest (somehow), update Makefiles
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 730b817..bbe8415 100644
--- a/Makefile
+++ b/Makefile
@@ -262,15 +262,19 @@ tar:
rm -rf /tmp/$(TCC-VERSION)
# in tests subdir
-test clean :
+test clean:
$(MAKE) -C tests $@
+config.mak:
+ @echo Running configure ...
+ @./configure
+
# clean
clean: local_clean
local_clean:
rm -vf $(PROGS) tcc_p$(EXESUF) tcc.pod *~ *.o *.a *.out libtcc_test$(EXESUF)
distclean: clean
- rm -vf config.h config.mak config.texi tcc.1 tcc-doc.html
+ rm -vf config.h config.mak config.texi tcc.1
endif # ifeq ($(TOP),.)