mirror of
https://github.com/pruten/shoebill.git
synced 2024-11-17 15:07:18 +00:00
f4f546deb5
Restart/shutdown now work (most of the time) PRAM is now integrated into the GUI The real time clock sorta works, but is a bit wonky Full-screen support Lots of other little bug fixes
85 lines
2.7 KiB
Makefile
85 lines
2.7 KiB
Makefile
|
|
CC = clang
|
|
CFLAGS = -O3 -ggdb -flto -Wno-deprecated-declarations
|
|
# CFLAGS = -O0 -ggdb -Wno-deprecated-declarations
|
|
|
|
|
|
DEPS = mc68851.h shoebill.h Makefile macro.pl
|
|
NEED_DECODER = cpu dis
|
|
NEED_PREPROCESSING = adb fpu mc68851 mem via floppy core_api
|
|
NEED_NOTHING = atrap_tab coff exception macii_symbols redblack scsi video filesystem alloc_pool
|
|
|
|
# Object files that can be compiled directly from the source
|
|
OBJ_NEED_NOTHING = $(patsubst %,$(TEMP)/%.o,$(NEED_NOTHING))
|
|
|
|
# Object files than need preprocessing with macro.pl
|
|
OBJ_NEED_PREPROCESSING = $(patsubst %,$(TEMP)/%.o,$(NEED_PREPROCESSING))
|
|
|
|
# Object files that depend on the instruction decoder
|
|
OBJ_NEED_DECODER = $(patsubst %,$(TEMP)/%.o,$(NEED_DECODER))
|
|
|
|
# Files that NEED_DECODER also NEED_PREPROCESSING
|
|
POST_PREPROCESSING = $(patsubst %,$(TEMP)/%.post.c,$(NEED_PREPROCESSING)) $(patsubst %,$(TEMP)/%.post.c,$(NEED_DECODER))
|
|
|
|
|
|
|
|
# All the object files compiled for x86_64
|
|
OBJ_x86_64 = $(OBJ_NEED_NOTHING) $(OBJ_NEED_PREPROCESSING) $(OBJ_NEED_DECODER)
|
|
|
|
# The object files compiled for i386 (the same as x86_64 files, but with .i386 appended)
|
|
OBJ_i386 = $(patsubst %,%.i386,$(OBJ_x86_64))
|
|
|
|
|
|
MACRO = perl macro.pl
|
|
|
|
TEMP = ../intermediates
|
|
|
|
|
|
all: $(TEMP)/libshoebill_core.a
|
|
|
|
$(TEMP)/libshoebill_core.a: $(TEMP) $(DEPS) $(OBJ_x86_64)
|
|
libtool -static -v -o $(TEMP)/libshoebill_core.a.x86_64 $(OBJ_x86_64)
|
|
libtool -static -v -o $(TEMP)/libshoebill_core.a.i386 $(OBJ_i386)
|
|
lipo -create -output $(TEMP)/libshoebill_core.a $(TEMP)/libshoebill_core.a.x86_64 $(TEMP)/libshoebill_core.a.i386
|
|
|
|
|
|
# Split object files into i386/x86_64 versions, since it seems that libtool is unable to
|
|
# link a static universal library for -O4 object files.
|
|
# x86_64 object files have the form "intermediates/<file_name>.o
|
|
# i386 object files have the form "intermediates/<file_name>.o.i386
|
|
|
|
# Build object files
|
|
$(OBJ_NEED_NOTHING): $(TEMP)/%.o: %.c $(DEPS)
|
|
$(CC) -c -arch x86_64 $(CFLAGS) $< -o $@
|
|
$(CC) -c -arch i386 $(CFLAGS) $< -o $@.i386
|
|
|
|
$(OBJ_NEED_PREPROCESSING): $(TEMP)/%.o: $(TEMP)/%.post.c $(DEPS)
|
|
$(CC) -c -arch x86_64 $(CFLAGS) $< -o $@
|
|
$(CC) -c -arch i386 $(CFLAGS) $< -o $@.i386
|
|
|
|
$(OBJ_NEED_DECODER): $(TEMP)/%.o: $(TEMP)/%.post.c $(DEPS) $(TEMP)/dis_decoder_guts.c $(TEMP)/inst_decoder_guts.c
|
|
$(CC) -c -arch x86_64 $(CFLAGS) $< -o $@
|
|
$(CC) -c -arch i386 $(CFLAGS) $< -o $@.i386
|
|
|
|
# Preprocess C files
|
|
$(POST_PREPROCESSING): $(TEMP)/%.post.c: %.c $(DEPS)
|
|
$(MACRO) $< $@
|
|
|
|
# Generate instruction decoders
|
|
$(TEMP)/inst_decoder_guts.c: $(TEMP)/decoder_gen $(DEPS)
|
|
$(TEMP)/decoder_gen inst $(TEMP)/
|
|
$(TEMP)/dis_decoder_guts.c: $(TEMP)/decoder_gen $(DEPS)
|
|
$(TEMP)/decoder_gen dis $(TEMP)/
|
|
|
|
# Compile the decoder generator
|
|
$(TEMP)/decoder_gen: decoder_gen.c $(DEPS)
|
|
$(CC) decoder_gen.c -o $(TEMP)/decoder_gen
|
|
|
|
|
|
$(TEMP):
|
|
mkdir -p $(TEMP)
|
|
|
|
clean:
|
|
rm -rf $(TEMP)
|
|
|