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.
|
CFLAGS = -Wall -Wextra -Wpedantic -std=c11 -g
|
|
LDFLAGS = -lSDL2 -lm
|
|
|
|
test: main.c ../ugui.c ../ugui.h ../def_style.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
|
|
|