From b49c7fd02150e509f8a542332c41becb4ebc6f43 Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Tue, 6 Apr 2010 14:38:34 +0000 Subject: [PATCH] big cleanup --- zebra/Makefile | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) 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 ]" + -- 1.7.10.4