6 lines
106 B
Makefile
6 lines
106 B
Makefile
|
|
all: converter
|
|
|
|
converter: *.cpp
|
|
g++ -g3 -o $@ $? `sdl-config --cflags` `sdl-config --libs` -lSDL_image
|