]> mj.ucw.cz Git - nwho.git/commitdiff
Released as version 1.10.
authorMartin Mares <mj@ucw.cz>
Fri, 5 Jul 2002 23:12:44 +0000 (23:12 +0000)
committerMartin Mares <mj@ucw.cz>
Fri, 5 Jul 2002 23:12:44 +0000 (23:12 +0000)
ChangeLog
Makefile

index e3f8117b7556f6216fd76a8e94a0015f1b6a6ecd..b0b1a27fd74a34d9a9604444e6cef771bc12f489 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2002-07-06  Martin Mares  <mj@atrey.karlin.mff.cuni.cz>
+
+       * Makefile: Split ywho and nwho. Released as version 1.10.
+
 2002-03-22  Martin Mares  <mj@ucw.cz>
 
        * nwhod.c: Use a hard-coded port number instead of pondering on /etc/services.
index a013f805b5416ec97c76a74d33bc360bfd6f9e01..60e4b31e9519b741834a56f4fac93c8eb90fcb6d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
 CFLAGS=-O2 -Wall -Wno-parentheses
 LDFLAGS=-s
 ROOT=/
-REL=nwho-1.9
+REL=nwho-1.10
 
 all: nwhod nwho
 
@@ -17,7 +17,6 @@ nwho.o: nwho.c net.h
 
 clean:
        rm -f *.o nwhod nwho *~
-       rm -rf dist
 
 install:
        mkdir -p $(ROOT)/usr/bin $(ROOT)/usr/sbin
@@ -27,7 +26,8 @@ install:
        install -d -m 755 $(ROOT)/var/spool/nwho
 
 dist: clean
-       mkdir dist
-       cp -a . dist/$(REL)
-       rm -rf `find dist/$(REL) -name CVS -o -name tmp` dist/$(REL)/dist
-       cd dist ; tar czvvf /tmp/$(REL).tar.gz $(REL)
+       mkdir -p ~/tmp
+       cp -a . ~/tmp/$(REL)
+       rm -rf `find ~/tmp/$(REL) -name CVS -o -name tmp`
+       cd ~/tmp ; tar czvvf $(REL).tar.gz $(REL)
+       rm -rf ~/tmp/$(REL)