commit bf46e40f3ac3ce6007f9f5c1cf482dde2ae35589
Author: Leonardo Taccari <[email protected]>
AuthorDate: Thu Feb 7 21:22:48 2019 +0100
Commit: Quentin Rameau <[email protected]>
CommitDate: Thu Feb 7 21:28:15 2019 +0100
Makefile: fix a typo in clean: target
diff --git a/Makefile b/Makefile
index 0e322d6..4f5253a 100644
--- a/Makefile
+++ b/Makefile
@@ -41,7 +41,7 @@ surf: $(OBJ) $(COBJ)
$(CC) $(SURFLDFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(COBJ) $(LIBS)
clean:
- rm -f surf $(OBJ) $(OBJ)
+ rm -f surf $(OBJ) $(COBJ)
rm -f libsurf-webext.so $(WEBEXTOBJ)
distclean: clean