2 |
|
|
3 |
|
## System specific configuration |
4 |
|
@SET_MAKE@ |
5 |
+ |
SHELL = /bin/sh |
6 |
|
|
7 |
|
prefix = @prefix@ |
8 |
|
exec_prefix = @exec_prefix@ |
26 |
|
INSTALL_DATA = @INSTALL_DATA@ |
27 |
|
|
28 |
|
## Files |
29 |
< |
SRCS=../prefs.cpp ../rom_patches.cpp ../slot_rom.cpp ../rsrc_patches.cpp ../emul_op.cpp \ |
29 |
> |
SRCS = ../prefs.cpp ../rom_patches.cpp ../slot_rom.cpp ../rsrc_patches.cpp ../emul_op.cpp \ |
30 |
|
../macos_util.cpp ../xpram.cpp ../timer.cpp ../adb.cpp ../serial.cpp ../ether.cpp ../sony.cpp \ |
31 |
|
../disk.cpp ../cdrom.cpp ../scsi.cpp ../video.cpp ../audio.cpp ../user_strings.cpp \ |
32 |
|
main_unix.cpp prefs_unix.cpp sys_unix.cpp xpram_unix.cpp timer_unix.cpp clip_unix.cpp \ |
36 |
|
|
37 |
|
## Rules |
38 |
|
.PHONY: modules install uninstall clean distclean depend |
39 |
+ |
.SUFFIXES: |
40 |
+ |
.SUFFIXES: .c .cpp .s .o .h |
41 |
|
|
42 |
< |
default: $(APP) |
42 |
> |
all: $(APP) |
43 |
|
|
44 |
|
OBJ_DIR = obj |
45 |
|
$(OBJ_DIR):: |
62 |
|
cd Linux/NetDriver; make |
63 |
|
|
64 |
|
install: $(APP) |
65 |
< |
$(INSTALL_PROGRAM) $(APP) $(bindir) |
66 |
< |
$(INSTALL_DATA) $(APP).1 $(man1dir) |
65 |
> |
$(INSTALL_PROGRAM) $(APP) $(bindir)/$(APP) |
66 |
> |
-$(INSTALL_DATA) $(APP).1 $(man1dir)/$(APP).1 |
67 |
|
$(INSTALL) -d $(datadir)/$(APP) |
68 |
< |
$(INSTALL_DATA) keycodes $(datadir)/$(APP) |
68 |
> |
$(INSTALL_DATA) keycodes $(datadir)/$(APP)/keycodes |
69 |
|
|
70 |
|
uninstall: |
71 |
< |
-rm -f $(bindir)/$(APP) |
72 |
< |
-rm -f $(man1dir)/$(APP).1 |
73 |
< |
-rm -rf $(datadir)/$(APP) |
74 |
< |
|
75 |
< |
clean: |
76 |
< |
-rm -f $(APP) $(OBJ_DIR)/* core* *.core *~ *.bak |
77 |
< |
-rm -f cpuemu.cpp cpudefs.cpp cputmp.s cpufast*.s cpustbl.cpp cputbl.h |
71 |
> |
rm -f $(bindir)/$(APP) |
72 |
> |
rm -f $(man1dir)/$(APP).1 |
73 |
> |
rm -f $(datadir)/$(APP)/keycodes |
74 |
> |
rmdir $(datadir)/$(APP) |
75 |
> |
|
76 |
> |
mostlyclean: |
77 |
> |
rm -f $(APP) $(OBJ_DIR)/* core* *.core *~ *.bak |
78 |
> |
|
79 |
> |
clean: mostlyclean |
80 |
> |
rm -f cpuemu.cpp cpudefs.cpp cputmp.s cpufast*.s cpustbl.cpp cputbl.h |
81 |
|
|
82 |
|
distclean: clean |
83 |
< |
-rm -rf $(OBJ_DIR) |
84 |
< |
-rm -f Makefile |
85 |
< |
-rm -f config.cache config.log config.status config.h |
83 |
> |
rm -rf $(OBJ_DIR) |
84 |
> |
rm -f Makefile |
85 |
> |
rm -f config.cache config.log config.status config.h |
86 |
|
|
87 |
|
depend dep: |
88 |
< |
makedepend $(CPPFLAGS) -Y ../*.cpp ../*.c *.cpp |
88 |
> |
makedepend $(CPPFLAGS) -Y. $(SRCS) 2>/dev/null |
89 |
|
|
90 |
|
$(OBJ_DIR)/%.o : %.c |
91 |
|
$(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) -c $< -o $@ |