| 1 |
cebix |
1.1 |
# Linux makefile for SheepShaver
|
| 2 |
|
|
|
| 3 |
|
|
## System specific configuration
|
| 4 |
|
|
@SET_MAKE@
|
| 5 |
|
|
SHELL = /bin/sh
|
| 6 |
|
|
|
| 7 |
|
|
prefix = @prefix@
|
| 8 |
|
|
exec_prefix = @exec_prefix@
|
| 9 |
|
|
bindir = @bindir@
|
| 10 |
|
|
datadir = @datadir@
|
| 11 |
|
|
mandir = @mandir@
|
| 12 |
|
|
man1dir = $(mandir)/man1
|
| 13 |
|
|
|
| 14 |
gbeauche |
1.11 |
DESTDIR =
|
| 15 |
|
|
|
| 16 |
cebix |
1.1 |
CC = @CC@
|
| 17 |
|
|
CXX = @CXX@
|
| 18 |
|
|
CFLAGS = @CFLAGS@
|
| 19 |
|
|
CXXFLAGS = @CXXFLAGS@
|
| 20 |
|
|
CPPFLAGS = @CPPFLAGS@ -I../include -I.
|
| 21 |
|
|
DEFS = @DEFS@ -D_REENTRANT -DDATADIR=\"$(datadir)/$(APP)\"
|
| 22 |
|
|
LDFLAGS = @LDFLAGS@
|
| 23 |
|
|
LIBS = @LIBS@
|
| 24 |
|
|
SYSSRCS = @SYSSRCS@
|
| 25 |
gbeauche |
1.7 |
CPUSRCS = @CPUSRCS@
|
| 26 |
gbeauche |
1.23 |
MONSRCS = @MONSRCS@
|
| 27 |
gbeauche |
1.29 |
PERL = @PERL@
|
| 28 |
gbeauche |
1.27 |
USE_DYNGEN = @USE_DYNGEN@
|
| 29 |
gbeauche |
1.7 |
DYNGENSRCS = @DYNGENSRCS@
|
| 30 |
gbeauche |
1.10 |
DYNGEN_CC = @DYNGEN_CC@
|
| 31 |
gbeauche |
1.7 |
DYNGEN_OP_FLAGS = @DYNGEN_OP_FLAGS@
|
| 32 |
gbeauche |
1.9 |
BLESS = @BLESS@
|
| 33 |
gbeauche |
1.20 |
EXEEXT = @EXEEXT@
|
| 34 |
gbeauche |
1.15 |
KEYCODES = @KEYCODES@
|
| 35 |
cebix |
1.1 |
INSTALL = @INSTALL@
|
| 36 |
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@ -s
|
| 37 |
|
|
INSTALL_DATA = @INSTALL_DATA@
|
| 38 |
|
|
|
| 39 |
gbeauche |
1.26 |
# Append disassembler to dyngen, if available
|
| 40 |
gbeauche |
1.27 |
ifneq (:no,$(MONSRCS):$(USE_DYNGEN))
|
| 41 |
gbeauche |
1.26 |
DYNGENSRCS += $(filter %i386-dis.c,$(MONSRCS))
|
| 42 |
|
|
endif
|
| 43 |
|
|
|
| 44 |
cebix |
1.1 |
## Files
|
| 45 |
gbeauche |
1.28 |
SRCS = ../main.cpp main_unix.cpp ../prefs.cpp ../prefs_items.cpp prefs_unix.cpp sys_unix.cpp \
|
| 46 |
cebix |
1.1 |
../rom_patches.cpp ../rsrc_patches.cpp ../emul_op.cpp ../name_registry.cpp \
|
| 47 |
|
|
../macos_util.cpp ../timer.cpp timer_unix.cpp ../xpram.cpp xpram_unix.cpp \
|
| 48 |
gbeauche |
1.13 |
../adb.cpp ../sony.cpp ../disk.cpp ../cdrom.cpp ../scsi.cpp \
|
| 49 |
gbeauche |
1.16 |
../gfxaccel.cpp ../video.cpp video_blit.cpp ../audio.cpp ../ether.cpp ../thunks.cpp \
|
| 50 |
gbeauche |
1.18 |
../serial.cpp ../extfs.cpp \
|
| 51 |
gbeauche |
1.2 |
about_window_unix.cpp ../user_strings.cpp user_strings_unix.cpp \
|
| 52 |
gbeauche |
1.3 |
vm_alloc.cpp sigsegv.cpp \
|
| 53 |
gbeauche |
1.23 |
sshpty.c strlcpy.c $(SYSSRCS) $(CPUSRCS) $(MONSRCS)
|
| 54 |
cebix |
1.1 |
APP = SheepShaver
|
| 55 |
gbeauche |
1.20 |
APP_EXE = $(APP)$(EXEEXT)
|
| 56 |
gbeauche |
1.17 |
APP_APP = $(APP).app
|
| 57 |
cebix |
1.1 |
|
| 58 |
|
|
## Rules
|
| 59 |
|
|
.PHONY: modules install uninstall clean distclean depend dep
|
| 60 |
|
|
.SUFFIXES:
|
| 61 |
|
|
.SUFFIXES: .c .cpp .S .o .h
|
| 62 |
|
|
|
| 63 |
gbeauche |
1.20 |
all: $(APP_EXE)
|
| 64 |
cebix |
1.1 |
|
| 65 |
|
|
OBJ_DIR = obj
|
| 66 |
|
|
$(OBJ_DIR)::
|
| 67 |
|
|
@[ -d $(OBJ_DIR) ] || mkdir $(OBJ_DIR) > /dev/null 2>&1
|
| 68 |
|
|
|
| 69 |
|
|
define SRCS_LIST_TO_OBJS
|
| 70 |
|
|
$(addprefix $(OBJ_DIR)/, $(addsuffix .o, $(foreach file, $(SRCS), \
|
| 71 |
|
|
$(basename $(notdir $(file))))))
|
| 72 |
|
|
endef
|
| 73 |
|
|
OBJS = $(SRCS_LIST_TO_OBJS)
|
| 74 |
|
|
|
| 75 |
gbeauche |
1.7 |
define DYNGENSRCS_LIST_TO_OBJS
|
| 76 |
|
|
$(addprefix $(OBJ_DIR)/, $(addsuffix .o, $(foreach file, $(DYNGENSRCS), \
|
| 77 |
|
|
$(basename $(notdir $(file))))))
|
| 78 |
|
|
endef
|
| 79 |
|
|
DYNGENOBJS = $(DYNGENSRCS_LIST_TO_OBJS)
|
| 80 |
|
|
|
| 81 |
cebix |
1.1 |
SRC_PATHS += $(sort $(foreach file, $(SRCS), $(dir $(file))))
|
| 82 |
|
|
VPATH :=
|
| 83 |
|
|
VPATH += $(addprefix :, $(subst ,:, $(filter-out $($(subst, :, ,$(VPATH))), $(SRC_PATHS))))
|
| 84 |
|
|
|
| 85 |
gbeauche |
1.20 |
$(APP_EXE): $(OBJ_DIR) $(OBJS)
|
| 86 |
|
|
$(CXX) -o $(APP_EXE) $(LDFLAGS) $(OBJS) $(LIBS)
|
| 87 |
|
|
$(BLESS) $(APP_EXE)
|
| 88 |
cebix |
1.1 |
|
| 89 |
gbeauche |
1.17 |
$(APP)_app: $(APP) ../MacOSX/Info.plist ../MacOSX/SheepShaver.icns
|
| 90 |
|
|
mkdir -p $(APP_APP)/Contents
|
| 91 |
|
|
cp -f ../MacOSX/Info.plist $(APP_APP)/Contents/
|
| 92 |
|
|
echo -n 'APPL????' > $(APP_APP)/Contents/PkgInfo
|
| 93 |
|
|
mkdir -p $(APP_APP)/Contents/MacOS
|
| 94 |
|
|
cp -f $(APP) $(APP_APP)/Contents/MacOS/
|
| 95 |
|
|
strip $(APP_APP)/Contents/MacOS/$(APP)
|
| 96 |
|
|
mkdir -p $(APP_APP)/Contents/Resources
|
| 97 |
|
|
cp -f ../MacOSX/SheepShaver.icns $(APP_APP)/Contents/Resources/
|
| 98 |
|
|
|
| 99 |
cebix |
1.1 |
modules:
|
| 100 |
gbeauche |
1.31 |
cd Linux/NetDriver; make
|
| 101 |
cebix |
1.1 |
|
| 102 |
gbeauche |
1.20 |
install: $(APP_EXE) installdirs
|
| 103 |
|
|
$(INSTALL_PROGRAM) $(APP_EXE) $(DESTDIR)$(bindir)/$(APP_EXE)
|
| 104 |
gbeauche |
1.11 |
-$(INSTALL_DATA) $(APP).1 $(DESTDIR)$(man1dir)/$(APP).1
|
| 105 |
gbeauche |
1.14 |
$(INSTALL_DATA) $(KEYCODES) $(DESTDIR)$(datadir)/$(APP)/keycodes
|
| 106 |
gbeauche |
1.11 |
$(INSTALL_DATA) tunconfig $(DESTDIR)$(datadir)/$(APP)/tunconfig
|
| 107 |
gbeauche |
1.12 |
chmod 755 $(DESTDIR)$(datadir)/$(APP)/tunconfig
|
| 108 |
cebix |
1.1 |
|
| 109 |
|
|
installdirs:
|
| 110 |
gbeauche |
1.11 |
$(SHELL) mkinstalldirs $(DESTDIR)$(bindir) $(DESTDIR)$(man1dir) $(DESTDIR)$(datadir)/$(APP)
|
| 111 |
cebix |
1.1 |
|
| 112 |
|
|
uninstall:
|
| 113 |
gbeauche |
1.20 |
rm -f $(DESTDIR)$(bindir)/$(APP_EXE)
|
| 114 |
gbeauche |
1.11 |
rm -f $(DESTDIR)$(man1dir)/$(APP).1
|
| 115 |
|
|
rm -f $(DESTDIR)$(datadir)/$(APP)/keycodes
|
| 116 |
|
|
rm -f $(DESTDIR)$(datadir)/$(APP)/tunconfig
|
| 117 |
|
|
rmdir $(DESTDIR)$(datadir)/$(APP)
|
| 118 |
cebix |
1.1 |
|
| 119 |
|
|
clean:
|
| 120 |
gbeauche |
1.20 |
rm -f $(APP_EXE) $(OBJ_DIR)/* core* *.core *~ *.bak ppc-execute-impl.cpp
|
| 121 |
gbeauche |
1.7 |
rm -f dyngen basic-dyngen-ops.hpp ppc-dyngen-ops.hpp
|
| 122 |
gbeauche |
1.17 |
rm -rf $(APP_APP)
|
| 123 |
cebix |
1.1 |
|
| 124 |
|
|
distclean: clean
|
| 125 |
|
|
rm -rf $(OBJ_DIR)
|
| 126 |
|
|
rm -f Makefile
|
| 127 |
|
|
rm -f config.cache config.log config.status config.h
|
| 128 |
gbeauche |
1.17 |
rm -f ../MacOSX/Info.plist
|
| 129 |
cebix |
1.1 |
|
| 130 |
|
|
depend dep:
|
| 131 |
|
|
makedepend $(CPPFLAGS) -Y. $(SRCS) 2>/dev/null
|
| 132 |
|
|
|
| 133 |
|
|
$(OBJ_DIR)/%.o : %.c
|
| 134 |
|
|
$(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) -c $< -o $@
|
| 135 |
|
|
$(OBJ_DIR)/%.o : %.cpp
|
| 136 |
|
|
$(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@
|
| 137 |
gbeauche |
1.18 |
$(OBJ_DIR)/%.o : %.mm
|
| 138 |
|
|
$(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c $< -o $@
|
| 139 |
cebix |
1.1 |
$(OBJ_DIR)/%.o : %.S
|
| 140 |
gbeauche |
1.30 |
$(CPP) $(CPPFLAGS) -D__ASSEMBLY__ $< -o $*.out.s
|
| 141 |
|
|
$(AS) $(ASFLAGS) -o $@ $*.out.s
|
| 142 |
|
|
rm $*.out.s
|
| 143 |
gbeauche |
1.5 |
|
| 144 |
|
|
# Kheperix CPU emulator
|
| 145 |
gbeauche |
1.19 |
kpxsrcdir = ../kpx_cpu/src
|
| 146 |
gbeauche |
1.29 |
GENEXECPL = $(kpxsrcdir)/cpu/ppc/genexec.pl
|
| 147 |
gbeauche |
1.20 |
DYNGEN = dyngen$(EXEEXT)
|
| 148 |
gbeauche |
1.5 |
|
| 149 |
gbeauche |
1.27 |
ifeq ($(USE_DYNGEN),yes)
|
| 150 |
gbeauche |
1.20 |
DYNGENDEPS = basic-dyngen-ops.hpp ppc-dyngen-ops.hpp
|
| 151 |
|
|
|
| 152 |
|
|
$(DYNGEN): $(DYNGENOBJS)
|
| 153 |
gbeauche |
1.7 |
$(CXX) -o $@ $(LDFLAGS) $(DYNGENOBJS)
|
| 154 |
|
|
|
| 155 |
|
|
$(OBJ_DIR)/basic-dyngen.o: basic-dyngen-ops.hpp
|
| 156 |
gbeauche |
1.19 |
$(OBJ_DIR)/basic-dyngen-ops.o: $(kpxsrcdir)/cpu/jit/basic-dyngen-ops.cpp
|
| 157 |
gbeauche |
1.10 |
$(DYNGEN_CC) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) $(DYNGEN_OP_FLAGS) -c $< -o $@
|
| 158 |
gbeauche |
1.20 |
basic-dyngen-ops.hpp: $(OBJ_DIR)/basic-dyngen-ops.o $(DYNGEN)
|
| 159 |
|
|
./$(DYNGEN) -o $@ $<
|
| 160 |
gbeauche |
1.7 |
|
| 161 |
|
|
$(OBJ_DIR)/ppc-dyngen.o: ppc-dyngen-ops.hpp
|
| 162 |
gbeauche |
1.19 |
$(OBJ_DIR)/ppc-dyngen-ops.o: $(kpxsrcdir)/cpu/ppc/ppc-dyngen-ops.cpp basic-dyngen-ops.hpp
|
| 163 |
gbeauche |
1.10 |
$(DYNGEN_CC) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) $(DYNGEN_OP_FLAGS) -c $< -o $@
|
| 164 |
gbeauche |
1.20 |
ppc-dyngen-ops.hpp: $(OBJ_DIR)/ppc-dyngen-ops.o $(DYNGEN)
|
| 165 |
|
|
./$(DYNGEN) -o $@ $<
|
| 166 |
cebix |
1.1 |
|
| 167 |
gbeauche |
1.19 |
$(OBJ_DIR)/sheepshaver_glue.o $(OBJ_DIR)/ppc-cpu.o $(OBJ_DIR)/ppc-decode.o $(OBJ_DIR)/ppc-translate.o: basic-dyngen-ops.hpp ppc-dyngen-ops.hpp
|
| 168 |
gbeauche |
1.20 |
endif
|
| 169 |
gbeauche |
1.19 |
|
| 170 |
gbeauche |
1.22 |
$(OBJ_DIR)/ppc-execute.o: ppc-execute-impl.cpp
|
| 171 |
gbeauche |
1.29 |
ppc-execute-impl.cpp: $(kpxsrcdir)/cpu/ppc/ppc-decode.cpp $(GENEXECPL) $(DYNGENDEPS)
|
| 172 |
|
|
$(CPP) $(CPPFLAGS) -DGENEXEC $< | $(PERL) $(GENEXECPL) > $@
|
| 173 |
gbeauche |
1.22 |
|
| 174 |
gbeauche |
1.23 |
# PowerPC CPU tester
|
| 175 |
gbeauche |
1.24 |
TESTSRCS_ = mathlib/ieeefp.cpp cpu/ppc/ppc-cpu.cpp cpu/ppc/ppc-decode.cpp cpu/ppc/ppc-execute.cpp cpu/ppc/ppc-translate.cpp test/test-powerpc.cpp $(MONSRCS) vm_alloc.cpp
|
| 176 |
gbeauche |
1.27 |
ifeq ($(USE_DYNGEN),yes)
|
| 177 |
gbeauche |
1.25 |
TESTSRCS_ += cpu/jit/jit-cache.cpp cpu/jit/basic-dyngen.cpp cpu/ppc/ppc-dyngen.cpp
|
| 178 |
gbeauche |
1.24 |
endif
|
| 179 |
gbeauche |
1.23 |
TESTSRCS = $(TESTSRCS_:%.cpp=$(kpxsrcdir)/%.cpp)
|
| 180 |
|
|
|
| 181 |
|
|
define TESTSRCS_LIST_TO_OBJS
|
| 182 |
|
|
$(addprefix $(OBJ_DIR)/, $(addsuffix .o, $(foreach file, $(TESTSRCS), \
|
| 183 |
|
|
$(basename $(notdir $(file))))))
|
| 184 |
|
|
endef
|
| 185 |
|
|
TESTOBJS = $(TESTSRCS_LIST_TO_OBJS)
|
| 186 |
|
|
|
| 187 |
|
|
$(OBJ_DIR)/test-powerpc.o: $(kpxsrcdir)/test/test-powerpc.cpp
|
| 188 |
|
|
$(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -DEMU_KHEPERIX -c $< -o $@
|
| 189 |
|
|
|
| 190 |
|
|
test-powerpc$(EXEEXT): $(TESTOBJS)
|
| 191 |
|
|
$(CXX) -o $@ $(LDFLAGS) $(TESTOBJS) $(LIBS)
|
| 192 |
|
|
|
| 193 |
cebix |
1.1 |
#-------------------------------------------------------------------------
|
| 194 |
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|