Re: [Tuxpaint-devel] Tux Paint 0.9.15 release plans
An award-winning drawing program for children of all ages
Brought to you by:
wkendrick
From: Albert C. <aca...@gm...> - 2005-09-08 00:59:38
|
> PS to Ben - remind me, what's the trick to make a tarball and NOT include > the CVS and .cvsignore files? ;) For procps, I use variables to explicitly list the files. I build the tarball before doing my final testing, so I can test what I hope to release as the final tarball. Makefile code: ################################################# VERSION :=3D 3 SUBVERSION :=3D 2 MINORVERSION :=3D 5 TARVERSION :=3D $(VERSION).$(SUBVERSION).$(MINORVERSION) TARFILES :=3D AUTHORS BUGS NEWS README TODO COPYING COPYING.LIB \ Makefile procps.lsm procps.spec v t README.top CodingStyle \ sysctl.conf minimal.c $(notdir $(MANFILES)) dummy.c \ uptime.c tload.c free.c w.c top.c vmstat.c watch.c skill.c \ sysctl.c pgrep.c top.h pmap.c slabtop.c pwdx.c ifneq ($(MAKECMDGOALS),clean) ifneq ($(MAKECMDGOALS),tar) # -- dependency and auto-config stuff goes here -- endif endif # let "make" know these aren't real things we will build .PHONY: clean tar all install # don't want to type "make procps-$(TARVERSION).tar.gz" tar: $(TARFILES) mkdir procps-$(TARVERSION) (tar cf - $(TARFILES)) | (cd procps-$(TARVERSION) && tar xf -) tar cf procps-$(TARVERSION).tar procps-$(TARVERSION) gzip -9 procps-$(TARVERSION).tar ###################################################### |