136 lines
3.1 KiB
Makefile
136 lines
3.1 KiB
Makefile
# Simple Makefile to build saturn_bertolotti
|
|
#
|
|
# The cc-option function and the C{,PP}FLAGS logic were copied from the
|
|
# fsverity-utils project.
|
|
# https://git.kernel.org/pub/scm/fs/fsverity/fsverity-utils.git/
|
|
# The governing license can be found in the LICENSE file or at
|
|
# https://opensource.org/license/MIT.
|
|
|
|
OPTIM ?= 2
|
|
|
|
CFLAGS ?= -g -O$(OPTIM) -I./src/ -D_GNU_SOURCE=1 -I./libChf -L./libChf/st_build -lutil
|
|
LIBS = -lm -lChf -lXm
|
|
|
|
X11CFLAGS = $(shell pkg-config --cflags x11 xext) -D_GNU_SOURCE=1
|
|
X11LIBS = $(shell pkg-config --libs x11 xext xt)
|
|
|
|
CFLAGS += $(X11CFLAGS)
|
|
LIBS += $(X11LIBS)
|
|
FULL_WARNINGS = no
|
|
|
|
DOTOS = src/cpu.o \
|
|
src/debug.o \
|
|
src/dis.o \
|
|
src/disk_io.o \
|
|
src/disk_io_obj.o \
|
|
src/display.o \
|
|
src/emulator.o \
|
|
src/flash49.o \
|
|
src/hdw.o \
|
|
src/hw_config.o \
|
|
src/keyb.o \
|
|
src/modules.o \
|
|
src/monitor.o \
|
|
src/romram.o \
|
|
src/romram49.o \
|
|
src/main.o \
|
|
src/serial.o \
|
|
src/x11.o \
|
|
src/x_func.o
|
|
|
|
MSFS= src/MSFs/debug.msf \
|
|
src/MSFs/cpu.msf \
|
|
src/MSFs/modules.msf \
|
|
src/MSFs/disk_io.msf \
|
|
src/MSFs/x11.msf \
|
|
src/MSFs/serial.msf \
|
|
src/MSFs/flash49.msf \
|
|
src/MSFs/x_func.msf \
|
|
src/MSFs/saturn.msf \
|
|
src/MSFs/util.msf \
|
|
libChf/chf.msf
|
|
|
|
MAKEFLAGS +=-j$(NUM_CORES) -l$(NUM_CORES)
|
|
|
|
cc-option = $(shell if $(CC) $(1) -c -x c /dev/null -o /dev/null > /dev/null 2>&1; \
|
|
then echo $(1); fi)
|
|
|
|
ifeq ($(FULL_WARNINGS), no)
|
|
EXTRA_WARNING_FLAGS := -Wno-unused-function \
|
|
-Wno-redundant-decls \
|
|
$(call cc-option,-Wno-maybe-uninitialized) \
|
|
$(call cc-option,-Wno-discarded-qualifiers) \
|
|
$(call cc-option,-Wno-uninitialized) \
|
|
$(call cc-option,-Wno-ignored-qualifiers)
|
|
endif
|
|
|
|
ifeq ($(FULL_WARNINGS), yes)
|
|
EXTRA_WARNING_FLAGS := -Wunused-function \
|
|
-Wredundant-decls \
|
|
-fsanitize-trap \
|
|
$(call cc-option,-Wunused-variable)
|
|
endif
|
|
|
|
override CFLAGS := -std=c11 \
|
|
-Wall -Wextra -Wpedantic \
|
|
-Wformat=2 -Wshadow \
|
|
-Wwrite-strings -Wstrict-prototypes -Wold-style-definition \
|
|
-Wnested-externs -Wmissing-include-dirs \
|
|
-Wdouble-promotion \
|
|
-Wno-sign-conversion \
|
|
-Wno-unused-variable \
|
|
-Wno-unused-parameter \
|
|
-Wno-conversion \
|
|
-Wno-format-nonliteral \
|
|
$(call cc-option,-Wjump-misses-init) \
|
|
$(call cc-option,-Wlogical-op) \
|
|
$(call cc-option,-Wno-unknown-warning-option) \
|
|
$(EXTRA_WARNING_FLAGS) \
|
|
$(CFLAGS)
|
|
|
|
override CPPFLAGS := -I./src/ -D_GNU_SOURCE=1 \
|
|
-DVERSION_MAJOR=$(VERSION_MAJOR) \
|
|
-DVERSION_MINOR=$(VERSION_MINOR) \
|
|
-DPATCHLEVEL=$(PATCHLEVEL) \
|
|
$(CPPFLAGS)
|
|
|
|
.PHONY: all clean clean-all pretty-code install mrproper get-roms
|
|
|
|
all: libChf/st_build/libChf.a dist/saturn dist/pack dist/saturn.cat manual
|
|
|
|
# Building
|
|
libChf/st_build/libChf.a:
|
|
make -C libChf
|
|
|
|
dist/saturn: $(DOTOS) libChf/st_build/libChf.a
|
|
$(CC) $^ -o $@ $(CFLAGS) $(LIBS)
|
|
|
|
dist/pack: src/pack.o src/disk_io.o src/debug.o libChf/st_build/libChf.a
|
|
$(CC) $^ -o $@ $(CFLAGS) $(LIBS)
|
|
|
|
dist/saturn.cat: $(MSFS)
|
|
for msf in $? ; \
|
|
do gencat $@ $$msf ; \
|
|
done
|
|
|
|
manual:
|
|
make -C manual
|
|
|
|
# Cleaning
|
|
clean:
|
|
rm -f src/*.o
|
|
make -C libChf clean
|
|
make -C manual clean
|
|
|
|
mrproper: clean
|
|
rm -f dist/pack dist/saturn dist/saturn.cat
|
|
|
|
clean-all: mrproper
|
|
|
|
# Formatting
|
|
pretty-code:
|
|
clang-format -i src/*.c src/*.h libChf/*.c libChf/*.h
|
|
|
|
# Dependencies
|
|
get-roms:
|
|
make -C ROMs get-roms
|