--- trunk/src/Makefile.skel 2007/10/08 16:19:37 22 +++ trunk/src/Makefile.skel 2007/10/08 16:19:56 24 @@ -1,17 +1,17 @@ # -# $Id: Makefile.skel,v 1.87 2005/12/20 21:19:14 debug Exp $ +# $Id: Makefile.skel,v 1.90 2006/05/05 05:32:46 debug Exp $ # # Makefile for GXemul src # CFLAGS=$(CWARNINGS) $(COPTIM) $(XINCLUDE) $(INCLUDE) -OBJS=console.o cpu.o debugger.o diskimage.o emul.o emul_parse.o file.o \ +OBJS=console.o cpu.o diskimage.o emul.o emul_parse.o file.o \ float_emul.o machine.o main.o misc.o memory.o device.o net.o \ - symbol.o useremul.o x11.o + settings.o symbol.o symbol_demangle.o useremul.o x11.o all: do_include - $(MAKE) do_src do_cpus do_devices do_machines do_promemul + $(MAKE) do_src do_cpus do_debugger do_devices do_machines do_promemul do_include: cd include; $(MAKE); cd .. @@ -19,6 +19,9 @@ do_cpus: cd cpus; $(MAKE); cd .. +do_debugger: + cd debugger; $(MAKE); cd .. + do_devices: cd devices; $(MAKE); cd .. @@ -36,6 +39,7 @@ rm -f $(OBJS) *core tmp_*.c cd include; $(MAKE) clean; cd .. cd cpus; $(MAKE) clean; cd .. + cd debugger; $(MAKE) clean; cd .. cd devices; $(MAKE) clean; cd .. cd machines; $(MAKE) clean; cd .. cd promemul; $(MAKE) clean; cd .. @@ -43,6 +47,7 @@ clean_all: clean cd include; $(MAKE) clean_all; cd .. cd cpus; $(MAKE) clean_all; cd .. + cd debugger; $(MAKE) clean_all; cd .. cd devices; $(MAKE) clean_all; cd .. cd machines; $(MAKE) clean_all; cd .. cd promemul; $(MAKE) clean_all; cd ..