Changeset 113:90081a7cc380
- Timestamp:
- 10/29/08 01:47:39 (3 years ago)
- Author:
- cfreeze@…
- Branch:
- unix
- Message:
-
add excludes in zip command to avoid unneeded files
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r109
|
r113
|
|
| 1 | 1 | DATE=`date +"%m-%d-%Y"` |
| | 2 | EXCLUDES=-x stormsiren/trac\* -x stormsiren/website\* -x stormsiren/.hg\* |
| 2 | 3 | |
| 3 | 4 | .PHONY : clean |
| … |
… |
|
| 13 | 14 | |
| 14 | 15 | packzip: |
| 15 | | cd .. && zip -9r $(HOME)/StormSiren-$(DATE).zip stormsiren |
| | 16 | cd .. && zip -9r $(HOME)/StormSiren-$(DATE).zip stormsiren ${EXCLUDES} |
| 16 | 17 | ls -alh $(HOME)/StormSiren-$(DATE).zip |