public
Description: A Nintendo Gameboy and Gameboy Color emulator for the Apple iPhone and iPod Touch.
Homepage: http://www.zodttd.com
Clone URL: git://github.com/zodttd/gameboy4iphone.git
Click here to lend your support to: gameboy4iphone and make a donation at www.pledgie.com !
gameboy4iphone / Rules
100644 32 lines (14 sloc) 0.436 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
 
include Version
 
OBJS = lcd.o refresh.o lcdc.o palette.o cpu.o mem.o rtc.o hw.o sound.o \
events.o keytable.o \
loader.o save.o debug.o emu.o main.o \
rccmds.o rckeys.o rcvars.o rcfile.o exports.o \
split.o path.o inflate.o
 
INCS = -I.
 
MYCC = $(CC) $(CFLAGS) $(INCS) $(SYS_INCS) $(SYS_DEFS)
MYAS = $(AS) $(ASFLAGS) $(INCS) $(SYS_INCS) $(SYS_DEFS)
 
main.o: Version
 
.c.o:
$(MYCC) -c $< -o $@
 
.s.o:
$(MYAS) -c $< -o $@