--- trunk/src/Makefile.skel 2007/10/08 16:17:48 2 +++ trunk/src/Makefile.skel 2007/10/08 16:18:00 4 @@ -1,5 +1,5 @@ # -# $Id: Makefile.skel,v 1.47 2005/03/13 09:36:08 debug Exp $ +# $Id: Makefile.skel,v 1.50 2005/04/16 02:02:27 debug Exp $ # # Makefile for GXemul src # @@ -9,11 +9,16 @@ OBJS=console.o cpu.o debugger.o diskimage.o emul.o emul_parse.o file.o \ machine.o main.o memory.o device.o net.o symbol.o useremul.o x11.o \ cpu_mips.o cpu_mips_coproc.o memory_fast_v2h.o bintrans.o \ - cpu_alpha.o cpu_hppa.o cpu_ppc.o cpu_sparc.o cpu_urisc.o \ - arcbios.o dec_prom.o ps2_bios.o of.o + cpu_alpha.o cpu_hppa.o cpu_ppc.o cpu_sparc.o cpu_urisc.o cpu_x86.o \ + arcbios.o dec_prom.o ps2_bios.o of.o pc_bios.o -all: $(OBJS) +all: do_src do_devices + +do_devices: + cd devices; $(MAKE); cd .. + +do_src: $(OBJS) $(OBJS): Makefile @@ -23,7 +28,9 @@ clean: rm -f $(OBJS) *core + cd devices; $(MAKE) clean; cd .. clean_all: clean + cd devices; $(MAKE) clean_all; cd .. rm -f Makefile