--- trunk/Makefile.skel 2007/10/08 16:18:11 6 +++ trunk/Makefile.skel 2007/10/08 16:20:58 32 @@ -1,5 +1,5 @@ # -# $Id: Makefile.skel,v 1.30 2005/05/25 06:41:19 debug Exp $ +# $Id: Makefile.skel,v 1.44 2006/09/02 05:55:19 debug Exp $ # # Makefile for GXemul # @@ -12,10 +12,7 @@ build: cd src; $(MAKE); cd .. - $(CC) $(COPTIM) src/*.o src/devices/*.o $(LIBS) -o $(BIN) - -regtest: build - cd tests; $(MAKE) run_tests; cd .. + $(CC) $(COPTIM) src/*.o src/cpus/*.o src/debugger/*.o src/devices/*.o src/machines/*.o src/net/*.o src/promemul/*.o $(LIBS) -o $(BIN) install: build @echo @@ -27,13 +24,16 @@ @echo clean: - rm -f $(BIN) *core core.* *.gmon _* + rm -f $(BIN) *core core.* *.gmon _* *.exe cd src; $(MAKE) clean; cd .. -# Tests and experiments are not cleaned on a normal clean, only on a clean_all. +# experiments and demos are not cleaned on a normal clean, only on a clean_all. clean_all: clean - cd tests; $(MAKE) clean_all; cd .. cd experiments; $(MAKE) clean_all; cd .. - rm -f config.h Makefile src/Makefile src/devices/Makefile src/devices/fonts/Makefile tests/Makefile - + cd demos; $(MAKE) clean; cd .. + rm -f config.h Makefile src/Makefile src/cpus/Makefile + rm -f src/debugger/Makefile + rm -f src/devices/Makefile src/devices/fonts/Makefile + rm -f src/machines/Makefile src/net/Makefile + rm -f src/promemul/Makefile src/include/Makefile