33 |
|
MACHINE=$(shell uname -m) |
34 |
|
ifeq ($(MACHINE), BePC) |
35 |
|
CPUSRCS = ../uae_cpu/basilisk_glue.cpp ../uae_cpu/memory.cpp ../uae_cpu/newcpu.cpp \ |
36 |
< |
../uae_cpu/readcpu.cpp ../uae_cpu/fpp.cpp cpustbl.cpp cpudefs.cpp cpufast.s |
36 |
> |
../uae_cpu/readcpu.cpp ../uae_cpu/fpu/fpu_x86.cpp cpustbl.cpp cpudefs.cpp cpufast.s |
37 |
|
else |
38 |
|
# CPUSRCS = ../powerrom_cpu/powerrom_cpu.cpp |
39 |
|
CPUSRCS = ../uae_cpu/basilisk_glue.cpp ../uae_cpu/newcpu.cpp \ |
40 |
< |
../uae_cpu/readcpu.cpp ../uae_cpu/fpp.cpp cpustbl.cpp cpudefs.cpp cpuemu.cpp |
40 |
> |
../uae_cpu/readcpu.cpp ../uae_cpu/fpu/fpu_uae.cpp cpustbl.cpp cpudefs.cpp cpuemu.cpp |
41 |
|
endif |
42 |
|
SRCS = ../main.cpp main_beos.cpp ../prefs.cpp ../prefs_items.cpp prefs_beos.cpp \ |
43 |
|
prefs_editor_beos.cpp sys_beos.cpp ../rom_patches.cpp ../slot_rom.cpp \ |
46 |
|
../serial.cpp serial_beos.cpp ../ether.cpp ether_beos.cpp ../sony.cpp \ |
47 |
|
../disk.cpp ../cdrom.cpp ../scsi.cpp scsi_beos.cpp ../video.cpp \ |
48 |
|
video_beos.cpp ../audio.cpp audio_beos.cpp ../extfs.cpp extfs_beos.cpp \ |
49 |
< |
../user_strings.cpp user_strings_beos.cpp \ |
49 |
> |
../user_strings.cpp user_strings_beos.cpp about_window.cpp \ |
50 |
|
$(CPUSRCS) |
51 |
|
|
52 |
|
# specify the resource files to use |