5 lines
75 B
Makefile
5 lines
75 B
Makefile
|
all : main
|
||
|
|
||
|
main : main.c
|
||
|
gcc -o main main.c `sdl-config --cflags --libs`
|