fox32/Makefile

19 lines
337 B
Makefile
Raw Normal View History

2022-10-23 03:00:51 +02:00
SDL2_CONFIG = sdl2-config
CFLAGS = -g -Ofast -std=c99 -Wall -Wextra `$(SDL2_CONFIG) --cflags --libs`
2022-10-23 03:00:51 +02:00
TARGET=fox32
CFILES = src/main.c \
src/bus.c \
2022-10-23 03:00:51 +02:00
src/cpu.c \
2022-10-24 07:36:24 +02:00
src/disk.c \
2022-10-23 03:00:51 +02:00
src/framebuffer.c \
src/keyboard.c \
2022-10-24 02:18:05 +02:00
src/mouse.c \
2022-10-23 03:00:51 +02:00
src/screen.c
$(TARGET): $(CFILES)
$(CC) -o $@ $(filter %.c, $^) $(CFLAGS)
clean:
rm -rf fox32