/[gxemul]/trunk/src/Makefile.skel
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/src/Makefile.skel

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2 by dpavlin, Mon Oct 8 16:17:48 2007 UTC revision 24 by dpavlin, Mon Oct 8 16:19:56 2007 UTC
# Line 1  Line 1 
1  #  #
2  #  $Id: Makefile.skel,v 1.47 2005/03/13 09:36:08 debug Exp $  #  $Id: Makefile.skel,v 1.90 2006/05/05 05:32:46 debug Exp $
3  #  #
4  #  Makefile for GXemul src  #  Makefile for GXemul src
5  #  #
6    
7  CFLAGS=$(CWARNINGS) $(COPTIM) $(XINCLUDE) $(INCLUDE)  CFLAGS=$(CWARNINGS) $(COPTIM) $(XINCLUDE) $(INCLUDE)
8    
9  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 \
10          machine.o main.o memory.o device.o net.o symbol.o useremul.o x11.o \          float_emul.o machine.o main.o misc.o memory.o device.o net.o \
11          cpu_mips.o cpu_mips_coproc.o memory_fast_v2h.o bintrans.o \          settings.o symbol.o symbol_demangle.o useremul.o x11.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  
12    
13    all: do_include
14            $(MAKE) do_src do_cpus do_debugger do_devices do_machines do_promemul
15    
16  all: $(OBJS)  do_include:
17            cd include; $(MAKE); cd ..
18    
19  $(OBJS): Makefile  do_cpus:
20            cd cpus; $(MAKE); cd ..
21    
22    do_debugger:
23            cd debugger; $(MAKE); cd ..
24    
25    do_devices:
26            cd devices; $(MAKE); cd ..
27    
28  bintrans.o: bintrans.c bintrans_alpha.c bintrans_i386.c  do_machines:
29            cd machines; $(MAKE); cd ..
30    
31  cpu_mips.o: cpu_mips.c memory_mips_v2p.c cpu_mips16.c memory_mips.c  do_promemul:
32            cd promemul; $(MAKE); cd ..
33    
34    do_src: $(OBJS)
35    
36    $(OBJS): Makefile
37    
38  clean:  clean:
39          rm -f $(OBJS) *core          rm -f $(OBJS) *core tmp_*.c
40            cd include; $(MAKE) clean; cd ..
41            cd cpus; $(MAKE) clean; cd ..
42            cd debugger; $(MAKE) clean; cd ..
43            cd devices; $(MAKE) clean; cd ..
44            cd machines; $(MAKE) clean; cd ..
45            cd promemul; $(MAKE) clean; cd ..
46    
47  clean_all: clean  clean_all: clean
48            cd include; $(MAKE) clean_all; cd ..
49            cd cpus; $(MAKE) clean_all; cd ..
50            cd debugger; $(MAKE) clean_all; cd ..
51            cd devices; $(MAKE) clean_all; cd ..
52            cd machines; $(MAKE) clean_all; cd ..
53            cd promemul; $(MAKE) clean_all; cd ..
54          rm -f Makefile          rm -f Makefile
55    

Legend:
Removed from v.2  
changed lines
  Added in v.24

  ViewVC Help
Powered by ViewVC 1.1.26