From a90db3b7b6e87e24c789b5db222f1cef92809bde Mon Sep 17 00:00:00 2001 From: Thomas Guillermo Albers Raviola Date: Fri, 16 Jan 2026 19:38:33 +0100 Subject: Initial commit --- progress/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 progress/Makefile (limited to 'progress/Makefile') diff --git a/progress/Makefile b/progress/Makefile new file mode 100644 index 0000000..37166bb --- /dev/null +++ b/progress/Makefile @@ -0,0 +1,12 @@ +TARGET=highnoon +SRC=$(wildcard src/*.c) +OBJ=$(addprefix obj/, $(SRC:src/%.c=%.o)) +LDFLAGS=-lSDL2 -lSDL2_mixer -lSDL2_image -lSDL2_ttf + +obj/%.o : src/%.c + $(CC) -c $< -o $@ + +$(TARGET) : src/main.h $(OBJ) + $(CC) $(OBJ) -o $@ $(LDFLAGS) + +all: $(TARGET) -- cgit v1.2.3