Started on the engine proper

This commit is contained in:
2022-09-18 21:48:15 +01:00
parent 902b917d2b
commit 50aef00ec0
11 changed files with 241 additions and 79 deletions

View File

@@ -1,8 +1,8 @@
CC=gcc
IDIR+=. ../Toy/source
IDIR+=. ../Toy/source ../core
CFLAGS+=$(addprefix -I,$(IDIR)) -DSDL_MAIN_HANDLED -g -Wall -W -pedantic -Wno-unused-parameter -Wno-unused-function -Wno-unused-variable
LIBS+=-lSDL2 -ltoy
LIBS+=-lSDL2 -ltoy -lcore
ODIR = obj
SRC = $(wildcard *.c)