9 lines
115 B
Makefile
9 lines
115 B
Makefile
|
|
default: all
|
|
|
|
all:
|
|
g++ -I../Dist/ *.cpp ../Dist/libfreeimage.a -o testAPI
|
|
|
|
clean:
|
|
rm -f *.o testAPI *.png *.tif
|