We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0f8d257 + 00173e3 commit 0acad90Copy full SHA for 0acad90
1 file changed
Makefile
@@ -89,3 +89,13 @@ rpm: rpmprep
89
lint:
90
clang-tidy -quiet -warnings-as-errors *.c *.h
91
92
+uninstall:
93
+ rm -f $(DESTDIR)$(PREFIX)/include/libcli.h
94
+ ifeq (1,$(STATIC_LIB))
95
+ rm -f $(DESTDIR)$(PREFIX)/lib/$(LIB_STATIC)
96
+ endif
97
+ ifeq (1,$(DYNAMIC_LIB))
98
+ rm -f $(DESTDIR)$(PREFIX)/lib/$(LIB).$(MAJOR).$(MINOR).$(REVISION)
99
+ rm -f $(DESTDIR)$(PREFIX)/lib/$(LIB).$(MAJOR).$(MINOR)
100
+ rm -f $(DESTDIR)$(PREFIX)/lib/$(LIB)
101
0 commit comments