Browse Source

Bugifx in Makefile's clean target

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

+ 2
- 2
Makefile View File

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

Loading…
Cancel
Save