From: Wolfram Schneider Date: Tue, 6 Apr 2010 14:38:34 +0000 (+0000) Subject: big cleanup X-Git-Tag: CPAN-v1.02~54^2~93^2~45 X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=commitdiff_plain;h=b49c7fd02150e509f8a542332c41becb4ebc6f43 big cleanup --- diff --git a/zebra/Makefile b/zebra/Makefile index 481a125..9a06425 100644 --- a/zebra/Makefile +++ b/zebra/Makefile @@ -1,4 +1,8 @@ -# $Id: Makefile,v 1.4 2007-09-13 12:19:58 mike Exp $ + +IRSPY_ARCHIVE= records-2007-05-01.tar.gz + +all: help + test: xmllint --noout --schema zeerex-2.0.xsd zeerex.xml @@ -7,12 +11,15 @@ terse.properties: pqf.properties sed -n 's/#.*//; s/[ ]*//; s/[ ][ ]*/ /g; /./p' $? > $@ newdb: - tar xzf records-2007-05-01.tar.gz + tar xzf ${IRSPY_ARCHIVE} zebraidx-2.0 init zebraidx-2.0 update zeerex.xml - zebraidx-2.0 update records-2007-05-01 + zebraidx-2.0 update `basename ${IRSPY_ARCHIVE} .tar.gz` zebraidx-2.0 commit clean: rm -f terse.properties +help: + @echo "make [ test | newdb | clean ]" +