/[gxemul]/upstream/0.4.6/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

Contents of /upstream/0.4.6/src/Makefile.skel

Parent Directory Parent Directory | Revision Log Revision Log


Revision 43 - (show annotations)
Mon Oct 8 16:22:43 2007 UTC (16 years, 7 months ago) by dpavlin
File size: 1780 byte(s)
0.4.6
1 #
2 # $Id: Makefile.skel,v 1.100 2007/06/05 05:40:24 debug Exp $
3 #
4 # Makefile for GXemul src
5 #
6
7 CFLAGS=$(CWARNINGS) $(COPTIM) $(XINCLUDE) $(INCLUDE)
8
9 OBJS=console.o cpu.o device.o emul.o emul_parse.o float_emul.o \
10 interrupt.o machine.o main.o memory.o misc.o net.o \
11 settings.o symbol.o symbol_demangle.o timer.o useremul.o x11.o
12
13 all: do_include
14 $(MAKE) do_src do_cpus do_debugger do_devices do_disk do_file \
15 do_machines do_native do_net do_promemul do_useremul
16
17 do_include:
18 cd include; $(MAKE); cd ..
19
20 do_cpus:
21 cd cpus; $(MAKE); cd ..
22
23 do_debugger:
24 cd debugger; $(MAKE); cd ..
25
26 do_devices:
27 cd devices; $(MAKE); cd ..
28
29 do_disk:
30 cd disk; $(MAKE); cd ..
31
32 do_file:
33 cd file; $(MAKE); cd ..
34
35 do_machines:
36 cd machines; $(MAKE); cd ..
37
38 do_native:
39 cd native; $(MAKE); cd ..
40
41 do_net:
42 cd net; $(MAKE); cd ..
43
44 do_promemul:
45 cd promemul; $(MAKE); cd ..
46
47 do_useremul:
48 cd useremul; $(MAKE); cd ..
49
50 do_src: $(OBJS)
51
52 $(OBJS): Makefile
53
54 clean:
55 rm -f $(OBJS) *core tmp_*.c
56 cd include; $(MAKE) clean; cd ..
57 cd cpus; $(MAKE) clean; cd ..
58 cd debugger; $(MAKE) clean; cd ..
59 cd devices; $(MAKE) clean; cd ..
60 cd disk; $(MAKE) clean; cd ..
61 cd file; $(MAKE) clean; cd ..
62 cd machines; $(MAKE) clean; cd ..
63 cd native; $(MAKE) clean; cd ..
64 cd net; $(MAKE) clean; cd ..
65 cd promemul; $(MAKE) clean; cd ..
66 cd useremul; $(MAKE) clean; cd ..
67
68 clean_all: clean
69 cd include; $(MAKE) clean_all; cd ..
70 cd cpus; $(MAKE) clean_all; cd ..
71 cd debugger; $(MAKE) clean_all; cd ..
72 cd devices; $(MAKE) clean_all; cd ..
73 cd disk; $(MAKE) clean_all; cd ..
74 cd file; $(MAKE) clean_all; cd ..
75 cd machines; $(MAKE) clean_all; cd ..
76 cd native; $(MAKE) clean_all; cd ..
77 cd net; $(MAKE) clean_all; cd ..
78 cd promemul; $(MAKE) clean_all; cd ..
79 cd useremul; $(MAKE) clean_all; cd ..
80 rm -f Makefile
81

  ViewVC Help
Powered by ViewVC 1.1.26