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 --- original/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 original/Makefile (limited to 'original/Makefile') diff --git a/original/Makefile b/original/Makefile new file mode 100644 index 0000000..14fcb0a --- /dev/null +++ b/original/Makefile @@ -0,0 +1,15 @@ +SRC=colisiones.c loadscreen.c main.c procesar.c render.c +OBJ=$(SRC:%.c=%.o) +TARGET=highnoon + +%.o : %.c + $(CC) -c $< -o $@ + +$(TARGET) : main.h $(OBJ) + $(CC) $(OBJ) -lSDL2 -lSDL2_image -o $@ + +all: $(TARGET) + +.PHONY: clean +clean: + rm -r $(OBJ) $(TARGET) -- cgit v1.2.3