Zack Buhman 3b82199d08 sound_cpu__interrupt: add slot visuals
This shows the value of some of the most relevant SCSP slot fields.
2023-05-19 23:08:19 +00:00

21 lines
377 B
Makefile

CFLAGS = -Og -Wall -Wextra -Werror -ggdb -Wno-error=unused-parameter -Wno-error=unused-variable
CFLAGS += $(shell pkg-config --cflags freetype2)
LDFLAGS = $(shell pkg-config --libs freetype2)
all: ttf-convert
%.o: %.cpp
$(CXX) $(CFLAGS) -c $< -o $@
%: %.o
$(CXX) $(LDFLAGS) $< -o $@
clean:
rm -f *.o ttf-convert
.SUFFIXES:
.INTERMEDIATE:
.SECONDARY:
.PHONY: all clean