|
|
1.1 root 1:
2: CC = gcc
3: LD = gcc
4:
5: CPPFLAGS = -Wall -O2 -g -fomit-frame-pointer
6:
7: #Play with these directories...
8: INCDIRS = -I/usr/X11R5/include
9: LDFLAGS = -lg++ -lX11 -g -L/usr/X11R5/lib
10:
11: PROGRAM = uae
12:
13: OBJS = main.o cpu.o memory.o debug.o custom.o cia.o disk.o xwin.o
14:
15: all: $(PROGRAM)
16:
17: install:
18:
19: $(PROGRAM): $(OBJS)
20: $(LD) $(OBJS) -o $(PROGRAM) $(LDFLAGS)
21:
22: clean:
23: rm -f *.o $(PROGRAM)
24:
25: .C.o:
26: $(CC) $(INCLUDES) -c $(INCDIRS) $(CPPFLAGS) $*.C
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.