diff options
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 5ac6e8e..23c8b6a 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -216,13 +216,13 @@ install: install-libs | |||
216 | chmod 644 $(DESTDIR)$(includedir)/zlib.h $(DESTDIR)$(includedir)/zconf.h | 216 | chmod 644 $(DESTDIR)$(includedir)/zlib.h $(DESTDIR)$(includedir)/zconf.h |
217 | 217 | ||
218 | uninstall: | 218 | uninstall: |
219 | cd $(DESTDIR)$(includedir); rm -f zlib.h zconf.h | 219 | cd $(DESTDIR)$(includedir) && rm -f zlib.h zconf.h |
220 | cd $(DESTDIR)$(libdir); rm -f libz.a; \ | 220 | cd $(DESTDIR)$(libdir) && rm -f libz.a; \ |
221 | if test -n "$(SHAREDLIBV)" -a -f $(SHAREDLIBV); then \ | 221 | if test -n "$(SHAREDLIBV)" -a -f $(SHAREDLIBV); then \ |
222 | rm -f $(SHAREDLIBV) $(SHAREDLIB) $(SHAREDLIBM); \ | 222 | rm -f $(SHAREDLIBV) $(SHAREDLIB) $(SHAREDLIBM); \ |
223 | fi | 223 | fi |
224 | cd $(DESTDIR)$(man3dir); rm -f zlib.3 | 224 | cd $(DESTDIR)$(man3dir) && rm -f zlib.3 |
225 | cd $(DESTDIR)$(pkgconfigdir); rm -f zlib.pc | 225 | cd $(DESTDIR)$(pkgconfigdir) && rm -f zlib.pc |
226 | 226 | ||
227 | docs: zlib.3.pdf | 227 | docs: zlib.3.pdf |
228 | 228 | ||