-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmakefile.burn_rules
41 lines (35 loc) · 1.25 KB
/
makefile.burn_rules
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
33
34
35
36
37
38
39
40
41
alldir = burn \
burn/devices \
burn/snd \
burn/drv burn/drv/capcom burn/drv/cps3 burn/drv/neogeo burn/drv/pgm\
burn/cpu burn/cpu/arm7 burn/cpu/m68k burn/cpu/sh2 burn/cpu/z80\
drvobj = d_cps1.o d_cps2.o d_cps3.o d_neogeo.o d_pgm.o
depobj := $(drvobj) \
\
burn.o burn_gun.o burn_led.o burn_memory.o burn_sound.o burn_sound_c.o cheat.o debug_track.o load.o \
tiles_generic.o timer.o vector.o \
\
eeprom.o timekpr.o v3021.o \
\
ay8910.o burn_ym2151.o burn_ym2203.o burn_ym2610.o \
fm.o fmopl.o ics2115.o msm5205.o msm6295.o ym2151.o ymdeltat.o \
\
arm7_intf.o m68000_intf.o z80_intf.o \
\
arm7.o sh2.o z80.o z80daisy.o \
\
cps2_crpt.o cps.o cps_config.o cps_draw.o cps_mem.o cps_obj.o cps_pal.o cps_run.o cps_rw.o cps_scr.o cpsr.o cpsrd.o \
cpst.o ctv.o fcrash_snd.o kabuki.o ps.o ps_m.o ps_z.o qs.o qs_c.o qs_z.o sf2mdt_snd.o \
\
cps3run.o cps3snd.o \
\
neo_decrypt.o neo_palette.o neo_run.o neo_sprite.o neo_text.o neo_upd4990a.o neogeo.o \
\
pgm_crypt.o pgm_draw.o pgm_run.o pgm_asic3.o pgm_asic27a_type1.o pgm_asic27a_type2.o pgm_asic27a_type3.o pgm_asic25.o \
\
ifdef DEBUG
depobj += m68kdasm.o
endif
ifdef BUILD_X86_ASM
autobj += burn_sound_a.o
endif