Selaa lähdekoodia

Fix distclean

Neither binary folder nor executable were removed.
DricomDragon 4 vuotta sitten
vanhempi
commit
8cfe3b9378
2 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 1 1
      TwoKobanClient/makefile
  2. 1 1
      TwoKobanServeur/makefile

+ 1 - 1
TwoKobanClient/makefile

@@ -20,7 +20,7 @@ clean:
 	rm -rf $(OBJ)
 
 distclean: clean
-	rm -rf $(EXEC)
+	rm -rf ./bin
 
 exec: $(EXEC)
 	./bin/$(EXEC)

+ 1 - 1
TwoKobanServeur/makefile

@@ -20,7 +20,7 @@ clean:
 	rm -rf $(OBJ)
 
 distclean: clean
-	rm -rf $(EXEC)
+	rm -rf ./bin
 
 exec: $(EXEC)
 	./bin/$(EXEC)