25 lines
475 B
Makefile
25 lines
475 B
Makefile
CC=g++
|
|
CFLAGS=MatriceVectLib.cpp -I. -std=c++11 -g
|
|
|
|
all: console readparams timing testIK main
|
|
|
|
console: console.cpp
|
|
$(CC) -o console console.cpp $(CFLAGS)
|
|
|
|
readparams: readparams.cpp
|
|
$(CC) -o readparams readparams.cpp $(CFLAGS)
|
|
|
|
timing: timing.cpp
|
|
$(CC) -o timing timing.cpp $(CFLAGS)
|
|
|
|
testIK: testIK.cpp
|
|
$(CC) -o testIK testIK.cpp $(CFLAGS)
|
|
|
|
main: main.cpp
|
|
$(CC) -o main main.cpp $(CFLAGS)
|
|
|
|
clean:
|
|
rm -f *.o console readparams timing testIK main
|
|
|
|
rebuild: clean all
|