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

11 lines
245 B

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