7 lines
94 B
Makefile
7 lines
94 B
Makefile
all:
|
|
if ! [ -d bin ]; then mkdir bin; fi
|
|
cc -o bin/cfhfg main.c -lSDL2
|
|
|
|
run: all
|
|
bin/cfhfg
|