/[gxemul]/upstream/0.3.6.1/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.3.6.1/src/Makefile.skel

Parent Directory Parent Directory | Revision Log Revision Log


Revision 17 - (show annotations)
Mon Oct 8 16:19:05 2007 UTC (16 years, 6 months ago) by dpavlin
File size: 783 byte(s)
0.3.6.1
1 #
2 # $Id: Makefile.skel,v 1.84 2005/08/29 14:46:31 debug Exp $
3 #
4 # Makefile for GXemul src
5 #
6
7 CFLAGS=$(CWARNINGS) $(COPTIM) $(XINCLUDE) $(INCLUDE)
8
9 OBJS=console.o cpu.o debugger.o diskimage.o emul.o emul_parse.o file.o \
10 machine.o main.o misc.o memory.o device.o net.o symbol.o useremul.o \
11 x11.o
12
13 all: do_src do_cpus do_devices do_promemul
14
15 do_cpus:
16 cd cpus; $(MAKE); cd ..
17
18 do_devices:
19 cd devices; $(MAKE); cd ..
20
21 do_promemul:
22 cd promemul; $(MAKE); cd ..
23
24 do_src: $(OBJS)
25
26 $(OBJS): Makefile
27
28 clean:
29 rm -f $(OBJS) *core tmp_*.c
30 cd cpus; $(MAKE) clean; cd ..
31 cd devices; $(MAKE) clean; cd ..
32 cd promemul; $(MAKE) clean; cd ..
33
34 clean_all: clean
35 cd cpus; $(MAKE) clean_all; cd ..
36 cd devices; $(MAKE) clean_all; cd ..
37 cd promemul; $(MAKE) clean_all; cd ..
38 rm -f Makefile
39

  ViewVC Help
Powered by ViewVC 1.1.26