First commit

This commit is contained in:
2024-10-15 00:24:13 -04:00
commit 8ec65dc6ae
9 changed files with 196 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
CC?=gcc
SHROOMSFLAGS=shrooms-vb-core/core/vb.c -I shrooms-vb-core/core
SDL2FLAGS=$(shell pkg-config sdl2 --cflags --libs)
.PHONY: clean
clean:
ifeq ($(OS),WINDOWS_NT)
@del shrooms-vb.exe
else
@rm -f shrooms-vb
endif
build:
@$(CC) cli.c game.c main.c -I . \
$(SHROOMSFLAGS) $(SDL2FLAGS) \
-D POSIX_C_SOURCE=199309L \
-o shrooms-vb \
-Werror -std=c90 -Wall -Wextra -Wpedantic