added clean target
This commit is contained in:
parent
5b7e591417
commit
5b55decd28
1 changed files with 7 additions and 3 deletions
10
Makefile
10
Makefile
|
@ -1,8 +1,8 @@
|
|||
CXX = clang++
|
||||
|
||||
CXXFLAGS = -I/opt/local/include/eigen3/
|
||||
CXXFLAGS = -I/opt/local/include/eigen3/
|
||||
|
||||
.PHONY: plot all
|
||||
.PHONY: plot all clean
|
||||
|
||||
all: collision_probabilty
|
||||
|
||||
|
@ -13,4 +13,8 @@ samples.dat: collision_probabilty
|
|||
./collision_probabilty > samples.dat
|
||||
|
||||
plot: samples.dat
|
||||
gnuplot -c gnuplot.script
|
||||
gnuplot -c gnuplot.script
|
||||
|
||||
clean:
|
||||
rm -f collision_probability
|
||||
rm -f samples.dat
|
Loading…
Add table
Reference in a new issue