Now that the manpages may not be compressed, the uninstall target
should remove both compressed and uncompressed manpage files from the
destination directory.
Signed-off-by: Ben Walton <bwalton@artsci.utoronto.ca>
uninstall:
for I in ${MAN8}; \
- do (rm -f $(DESTDIR)$(mandir)/man8/$$I.gz); \
+ do (rm -f $(DESTDIR)$(mandir)/man8/$$I.gz; \
+ rm -f $(DESTDIR)$(mandir)/man8/$$I); \
done
for I in ${MAN1}; \
- do (rm -f $(DESTDIR)$(mandir)/man1/$$I.gz); \
+ do (rm -f $(DESTDIR)$(mandir)/man1/$$I.gz; \
+ rm -f $(DESTDIR)$(mandir)/man1/$$I); \
done
clean: