Changeset 77:c40e4ca9290f for Makefile

Show
Ignore:
Timestamp:
10/22/08 02:42:09 (3 years ago)
Author:
chris
Branch:
unix
Children:
78:fad857d2ded3, 79:206906ef35cc
Message:

add makefile target to pack up the files

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Makefile

    r46 r77  
     1DATE=`date +"%m-%d-%Y"` 
     2 
     3.PHONY : clean 
    14clean: 
    2         @rm -f *.pyc 
     5        rm -f *.pyc 
     6 
     7pack: 
     8        tar -cvf $(HOME)/StormXmlSiren-$(DATE).tar *.py *.conf .todo 
     9        bzip2 -9 $(HOME)/StormXmlSiren-$(DATE).tar 
     10        ls -alh $(HOME)/StormXmlSiren-$(DATE).tar.bz2