saturnng/Makefile

167 lines
4.4 KiB
Makefile
Raw Normal View History

2024-03-20 18:54:37 +01:00
# Simple Makefile to build saturn_bertolotti
2024-08-25 15:30:44 +02:00
#
# 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.
2024-03-20 18:54:37 +01:00
2024-08-25 16:52:42 +02:00
PREFIX = /usr
DOCDIR = $(PREFIX)/doc/x48ng
MANDIR = $(PREFIX)/man
2024-03-20 18:54:37 +01:00
OPTIM ?= 2
2024-08-25 15:30:44 +02:00
CFLAGS ?= -g -O$(OPTIM) -I./src/ -D_GNU_SOURCE=1 -I./libChf -L./libChf/st_build -lutil
2024-03-20 18:54:37 +01:00
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 \
2024-03-20 21:43:33 +01:00
src/main.o \
2024-03-20 18:54:37 +01:00
src/serial.o \
src/x11.o \
src/x_func.o
2024-03-26 15:51:15 +01:00
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
2024-08-25 15:30:44 +02:00
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)
2024-08-25 16:52:42 +02:00
.PHONY: all clean clean-all pretty-code install mrproper get-roms install
2024-03-20 18:54:37 +01:00
2024-03-26 15:51:15 +01:00
all: libChf/st_build/libChf.a dist/saturn dist/pack dist/saturn.cat manual
2024-03-20 18:54:37 +01:00
2024-03-21 11:25:58 +01:00
# Building
2024-03-26 15:51:15 +01:00
libChf/st_build/libChf.a:
make -C libChf
2024-03-26 15:51:15 +01:00
dist/saturn: $(DOTOS) libChf/st_build/libChf.a
2024-03-20 18:54:37 +01:00
$(CC) $^ -o $@ $(CFLAGS) $(LIBS)
2024-03-26 15:51:15 +01:00
dist/pack: src/pack.o src/disk_io.o src/debug.o libChf/st_build/libChf.a
2024-03-20 18:54:37 +01:00
$(CC) $^ -o $@ $(CFLAGS) $(LIBS)
dist/saturn.cat: $(MSFS)
for msf in $? ; \
do gencat $@ $$msf ; \
done
manual:
make -C manual
2024-03-20 18:54:37 +01:00
# Cleaning
clean:
rm -f src/*.o
2024-03-26 15:51:15 +01:00
make -C libChf clean
make -C manual clean
2024-03-20 18:54:37 +01:00
mrproper: clean
rm -f dist/pack dist/saturn dist/saturn.cat
2024-08-25 16:52:42 +02:00
make -C dist/ROMs mrproper
2024-03-20 18:54:37 +01:00
clean-all: mrproper
# Formatting
pretty-code:
2024-03-26 15:51:15 +01:00
clang-format -i src/*.c src/*.h libChf/*.c libChf/*.h
2024-03-20 18:54:37 +01:00
2024-03-21 11:25:58 +01:00
# Dependencies
get-roms:
2024-08-25 16:52:42 +02:00
make -C dist/ROMs get-roms
# Installation
2024-08-25 17:20:40 +02:00
install: dist/saturn dist/pack dist/saturn.cat dist/Saturn.ad manual
2024-08-25 16:52:42 +02:00
install -m 755 -d -- $(DESTDIR)$(PREFIX)/bin
install -c -m 755 dist/saturn $(DESTDIR)$(PREFIX)/bin/saturn
2024-08-25 17:26:24 +02:00
sed "s|@PREFIX@|$(PREFIX)|g" dist/saturn48gx > $(DESTDIR)$(PREFIX)/bin/saturn48gx
chmod 755 $(DESTDIR)$(PREFIX)/bin/saturn48gx
install -c -m 644 dist/saturn.cat $(DESTDIR)$(PREFIX)/bin/saturn.cat #FIXME
# install -m 755 -d -- $(DESTDIR)$(PREFIX)/share/locale/C/LC_MESSAGES
# install -c -m 644 dist/saturn.cat $(DESTDIR)$(PREFIX)/share/locale/C/LC_MESSAGES/saturn.cat
2024-08-25 16:52:42 +02:00
install -m 755 -d -- $(DESTDIR)$(PREFIX)/share/saturn
install -c -m 755 dist/pack $(DESTDIR)$(PREFIX)/share/saturn/pack
2024-08-25 17:20:40 +02:00
install -c -m 644 dist/hplogo.png $(DESTDIR)$(PREFIX)/share/saturn/hplogo.png
2024-08-25 16:52:42 +02:00
cp -R dist/ROMs/ $(DESTDIR)$(PREFIX)/share/saturn/
2024-08-25 17:05:35 +02:00
install -m 755 -d -- $(DESTDIR)/etc/X11/app-defaults
install -c -m 644 dist/Saturn.ad $(DESTDIR)/etc/X11/app-defaults/Saturn
2024-08-25 16:52:42 +02:00
install -m 755 -d -- $(DESTDIR)$(DOCDIR)
cp -R COPYING LICENSE README* docs* manual/ $(DESTDIR)$(DOCDIR)
2024-08-25 17:20:40 +02:00
install -m 755 -d -- $(DESTDIR)$(PREFIX)/share/applications
sed "s|@PREFIX@|$(PREFIX)|g" dist/saturn48gx.desktop > $(DESTDIR)$(PREFIX)/share/applications/saturn48gx.desktop