You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ugui/test/Makefile

12 lines
319 B

1 year ago
CFLAGS = -Wall -Wextra -Wpedantic -std=c11 -g
LDFLAGS = -lSDL2 -lm
1 year ago
test: main.c ../ugui.c ../ugui.h ../def_style.h ../input.c
1 year ago
gcc ${CFLAGS} -c ../ugui.c -o ugui.o
gcc ${CFLAGS} -c ../input.c -o input.o
1 year ago
gcc ${CFLAGS} -c main.c -o main.o
gcc ${LDFLAGS} main.o ugui.o input.o -o test
1 year ago
clean:
rm -f main.o ugui.o