diff options
author | Anton Luka Šijanec <anton@sijanec.eu> | 2022-04-30 17:14:05 +0200 |
---|---|---|
committer | Anton Luka Šijanec <anton@sijanec.eu> | 2022-04-30 17:14:05 +0200 |
commit | 5ec13a947a1d74c471f1c95e1340559594f500cb (patch) | |
tree | 427c2e2b414210e9f1b6c62f968beb79643526e2 /Makefile | |
parent | 0.0.3 (diff) | |
download | ircxmpp-5ec13a947a1d74c471f1c95e1340559594f500cb.tar ircxmpp-5ec13a947a1d74c471f1c95e1340559594f500cb.tar.gz ircxmpp-5ec13a947a1d74c471f1c95e1340559594f500cb.tar.bz2 ircxmpp-5ec13a947a1d74c471f1c95e1340559594f500cb.tar.lz ircxmpp-5ec13a947a1d74c471f1c95e1340559594f500cb.tar.xz ircxmpp-5ec13a947a1d74c471f1c95e1340559594f500cb.tar.zst ircxmpp-5ec13a947a1d74c471f1c95e1340559594f500cb.zip |
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -20,10 +20,10 @@ install: distclean: clean clean: - rm $(PROJ) $(PROJ).o lib$(PROJ).so + rm -f $(PROJ) $(PROJ).o lib$(PROJ).so uninstall: - rm $(DESTDIR)/usr/bin/$(PROJ) $(DESTDIR)/etc/$(PROJ) $(DESTDIR)/usr/include/$(PROJ).h $(DESTDIR)/usr/lib/lib$(PROJ).so + rm -f $(DESTDIR)/usr/bin/$(PROJ) $(DESTDIR)/etc/$(PROJ) $(DESTDIR)/usr/include/$(PROJ).h $(DESTDIR)/usr/lib/lib$(PROJ).so valgrind: valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --verbose --log-file=valgrind-out.txt $(COMMAND) |