Browse Source

Bugifx in Makefile's clean target

Yann Weber 4 years ago
parent
commit
045213a4cc
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Makefile

+ 2
- 2
Makefile View File

82
 
82
 
83
 clean:
83
 clean:
84
 	-rm -fv *.o pyrpn.so test;\
84
 	-rm -fv *.o pyrpn.so test;\
85
-	-rm -fRv doc/.doxygen.stamp doc/* Doxyfile;\
85
+	rm -fRv doc/.doxygen.stamp doc/* Doxyfile;\
86
 	make -C tests clean
86
 	make -C tests clean
87
 
87
 
88
 distclean: clean
88
 distclean: clean
89
 	-rm -vf .deps;\
89
 	-rm -vf .deps;\
90
-	-rm -Rvf tests/__pycache__;
90
+	rm -Rvf tests/__pycache__;
91
 
91
 

Loading…
Cancel
Save