Minor fix to description.
[privoxy.git] / GNUmakefile.in
index c5b660a..1e697f2 100644 (file)
@@ -1,9 +1,9 @@
 # Note:  Makefile is built automatically from Makefile.in
 #
-# $Id: GNUmakefile.in,v 1.28 2002/03/24 16:19:48 swa Exp $
+# $Id: GNUmakefile.in,v 1.31 2002/03/26 14:00:18 swa Exp $
 #
 # Written by and Copyright (C) 2001 the SourceForge
-# Privoxy team.  http://ijbswa.sourceforge.net
+# Privoxy team. http://www.privoxy.org/
 #
 # Based on the Internet Junkbuster originally written
 # by and Copyright (C) 1997 Anonymous Coders and 
@@ -262,11 +262,44 @@ redhat-upload:
 #############################################################################
 solaris-dist:
        @$(ECHO) coming soon. 
+solaris-upload:
+       @$(ECHO) coming soon. 
+
+#############################################################################
+# hpux distribution
+#############################################################################
+hpux-dist:
+       @$(ECHO) coming soon. 
+hpux-upload:
+       @$(ECHO) coming soon. 
+
+#############################################################################
+# debian distribution
+#############################################################################
+debian-dist:
+       @$(ECHO) coming soon. 
+debian-upload:
+       @$(ECHO) coming soon. 
 
 #############################################################################
-# suse distribution (need to be root to build)
+# macosx distribution
 #############################################################################
+macosx-dist:
+       @$(ECHO) coming soon. 
+macosx-upload:
+       @$(ECHO) coming soon. 
+
+#############################################################################
+# amiga distribution
+#############################################################################
+amiga-dist:
+       @$(ECHO) coming soon. 
+amiga-upload:
+       @$(ECHO) coming soon. 
 
+#############################################################################
+# suse distribution. works fine. no need to be root. 
+#############################################################################
 suse-dist:
        for dir in RPMS SRPMS BUILD SOURCES SPECS; do \
                if [ ! -w $(RPM_BASE)/$$dir ]; then \
@@ -338,13 +371,24 @@ win-dist:
 #############################################################################
 # Tarball distribution
 #############################################################################
-tarball-dist:
-       @make clean
-       make $(PROGRAM) 
-#      remove all objects and create the tarball with the binary
-       cd .. && $(RM) ijb/a.out ijb/core ijb/*.@OBJEXT@ && tar --exclude "ijb/CVS" -cvzf ../privoxy-distribution-$(VERSION).tar.gz current/
-       chmod a+r ../../privoxy-distribution-$(VERSION).tar.gz
-       @$(ECHO) Tarball with binary created.
+tarball-dist: clobber
+       $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
+       $(TAR) -C.. --exclude "CVS" --exclude "#*" --exclude ".#*" --exclude ".cvsignore" -cvhzf privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz privoxy-$(VERSION)-$(CODE_STATUS)
+       $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)
+       @$(ECHO) Tarball (with any binary) created.
+
+# anonymously ncftps the tarball to sourceforge
+tarball-upload:
+       ncftpput -u anonymous -p ijbswa-developers@lists.sourceforge.net upload.sourceforge.net /incoming privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
+       @$(ECHO) -------------------------------------------------------
+       @$(ECHO) Now goto
+       @$(ECHO) http://sourceforge.net/project/admin/editpackages.php?group_id=11118
+       @$(ECHO) ... and release the files.
+       @$(ECHO) -------------------------------------------------------
+
+# handle with care
+tarball-clean:
+       $(RM) privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz
 
 #############################################################################
 #
@@ -480,7 +524,7 @@ $(PROGRAM): $(OBJS) $(W32_FILES)
        $(LD) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
 
 clean:
-       $(RM) a.out core $(OBJS) $(W32_FILES) $(W32_INIS)
+       $(RM) a.out core $(OBJS) $(W32_FILES) $(W32_INIS) $(PROGRAM) junkbuster
 
 clobber: clean
        $(RM) $(PROGRAM) cscope.* logfile *.pdb *.lib *.exp `find . -name tags` `find . -name TAGS` config.status config.h.in config.log junkbuster.log privoxy.log config.cache *~ *.tar.gz configure
@@ -488,11 +532,6 @@ clobber: clean
 tags: $(SRCS) $(HDRS)
        etags $(SRCS) $(HDRS)
 
-tarball-src: clobber
-       $(LN) -s current ../privoxy-$(VERSION)-$(CODE_STATUS)
-       $(TAR) -C.. -cvhzf privoxy-$(VERSION)-$(CODE_STATUS)-src.tar.gz privoxy-$(VERSION)-$(CODE_STATUS)
-       $(RM) ../privoxy-$(VERSION)-$(CODE_STATUS)
-
 install: all
        #
        # FIXME: This is a dirty hack to have an install target
@@ -518,6 +557,15 @@ install: all
 ## end:
 
 # $Log: GNUmakefile.in,v $
+# Revision 1.31  2002/03/26 14:00:18  swa
+# fixed make tarball, tarball-dist, tarball-clean
+#
+# Revision 1.30  2002/03/25 12:52:25  swa
+# new targets
+#
+# Revision 1.29  2002/03/24 17:03:55  jongfoster
+# Name change
+#
 # Revision 1.28  2002/03/24 16:19:48  swa
 # configure needs to be generated.
 #