big cleanup
authorWolfram Schneider <wosch@indexdata.dk>
Tue, 6 Apr 2010 14:38:34 +0000 (14:38 +0000)
committerWolfram Schneider <wosch@indexdata.dk>
Tue, 6 Apr 2010 14:38:34 +0000 (14:38 +0000)
zebra/Makefile

index 481a125..9a06425 100644 (file)
@@ -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 ]"
+