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.
11 lines
241 B
11 lines
241 B
2 years ago
|
CFLAGS = -Wall -Wextra -Wpedantic -std=c11 -g
|
||
|
LDFLAGS = -lSDL2
|
||
|
|
||
|
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
|