aboutsummaryrefslogtreecommitdiff
path: root/Tupfile
blob: 66579abd13eef4d0f200986544a51776d946ff9d (plain)
1
2
3
4
5
6
7
8
CC = clang
LD = clang
CFLAGS = -Wall -Wextra -Wno-initializer-overrides -Wno-unused-parameter -O0 -g -std=c99 -iquoteeng/inc -iquoteinc -include_.h -DTZR_STB_IMAGE=
LDFLAGS = -O0 -g
LIBS = -lm -lSDL2 -lSDL2_mixer

: foreach src/*.c eng/src/*.c |> $(CC) $(CFLAGS) -c -o %o %f |> build/%B.o
: build/*.o |> $(LD) $(LDFLAGS) -o %o %f $(LIBS) |> build/game