diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-12-04 16:17:07 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-12-04 16:17:07 +0000 |
commit | 62e5d0c62fc0d22f1e172792e74d9ef6a8ed411c (patch) | |
tree | 454db9e8a106dcbacfaeec8cf892baaa0b7df316 /scripts/w3mman/Makefile | |
parent | [w3m-dev 02611] a improvement of find_cookie() (diff) | |
download | w3m-62e5d0c62fc0d22f1e172792e74d9ef6a8ed411c.tar.gz w3m-62e5d0c62fc0d22f1e172792e74d9ef6a8ed411c.zip |
[w3m-dev 02614] cleanup Makefiles
From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
-rw-r--r-- | scripts/w3mman/Makefile | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/scripts/w3mman/Makefile b/scripts/w3mman/Makefile index 613d561..7a629a8 100644 --- a/scripts/w3mman/Makefile +++ b/scripts/w3mman/Makefile @@ -8,6 +8,7 @@ distdir = ./distfiles TARGETS = w3mman LIB_TARGETS = w3mman2html.cgi +MKDIR = mkdir -p INSTALL = install -c INSTALL_SCRIPT = $(INSTALL) -m 755 @@ -28,6 +29,8 @@ all: $(TARGETS) $(LIB_TARGETS) chmod +x $@ install: $(TARGETS) $(LIB_TARGETS) + -$(MKDIR) $(DESTDIR)$(BIN_DIR) + -$(MKDIR) $(DESTDIR)$(LIB_DIR) for file in $(TARGETS); \ do \ $(INSTALL_SCRIPT) $$file $(DESTDIR)$(BIN_DIR); \ @@ -37,17 +40,24 @@ install: $(TARGETS) $(LIB_TARGETS) $(INSTALL_SCRIPT) $$file $(DESTDIR)$(LIB_DIR); \ done +uninstall: + -for file in $(TARGETS); \ + do \ + rm -f $(BIN_DIR)/$$file; \ + done + -for file in $(LIB_TARGETS); \ + do \ + rm -f $(LIB_DIR)/$$file; \ + done + clean: - rm -f $(TARGETS) $(LIB_TARGETS) + -rm -f $(TARGETS) $(LIB_TARGETS) dist: all @-rm -fr $(distdir)/w3mman - mkdir -p $(distdir)/w3mman - cp Makefile README w3mman w3mman.in \ - w3mman2html.cgi w3mman2html.cgi.in hlink.cgi \ - $(distdir)/w3mman - ( cd $(distdir); \ - tar -cf - w3mman | GZIP='' gzip ) \ + -$(MKDIR) $(distdir)/w3mman + cp Makefile README w3mman.in w3mman2html.cgi.in hlink.cgi $(distdir)/w3mman + ( cd $(distdir); tar -cf - w3mman | GZIP='' gzip ) \ > $(distdir)/w3mman.tar.gz -rm -fr $(distdir)/w3mman |