diff options
author | Yves Duret <yduret@mandriva.com> | 2001-12-18 17:07:41 +0000 |
---|---|---|
committer | Yves Duret <yduret@mandriva.com> | 2001-12-18 17:07:41 +0000 |
commit | 7a7369618be7978d8172747737fec7e074ab9bcd (patch) | |
tree | a49413dc5c4fe328b9d1ef2bde6ac1cb29b8e638 /lst/Makefile | |
parent | db84293812e7ca8c42996f18bd211e655ce59718 (diff) | |
download | ldetect-lst-7a7369618be7978d8172747737fec7e074ab9bcd.tar ldetect-lst-7a7369618be7978d8172747737fec7e074ab9bcd.tar.gz ldetect-lst-7a7369618be7978d8172747737fec7e074ab9bcd.tar.bz2 ldetect-lst-7a7369618be7978d8172747737fec7e074ab9bcd.tar.xz ldetect-lst-7a7369618be7978d8172747737fec7e074ab9bcd.zip |
fix scannerDB.gz creation..
Diffstat (limited to 'lst/Makefile')
-rw-r--r-- | lst/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lst/Makefile b/lst/Makefile index 1efeb6a4..38bb9869 100644 --- a/lst/Makefile +++ b/lst/Makefile @@ -5,8 +5,8 @@ ARCH := $(patsubst sparc%,sparc,$(ARCH)) TABLES1 = pcitable usbtable TABLES2 = isatable pcmciatable -TABLES3 = ScannerDB -TABLES = $(TABLES1) $(TABLES2) $(TABLES3) +TABLES3 = ScannerDB.gz +TABLES = $(TABLES1) $(TABLES2) TMP_TABLES1 = $(TABLES1:%=%.tmp) TMP_TABLES2 = $(TABLES2:%=%.tmp) TMP_TABLES = $(TABLES:%=%.tmp) @@ -27,10 +27,10 @@ $(TMP_TABLES1): %.tmp: % $(TMP_TABLES2): %.tmp: % cp -f $< $@ -$(TMP_TABLES3): %.tmp: % +$(TABLES3): gzip -vc9 ScannerDB > ScannerDB.gz -install: $(TMP_TABLES) +install: $(TMP_TABLES) $(TABLES3) for i in $(TABLES); do \ (echo "# !! The original version is available in CVS at" ; \ echo "# export CVSROOT=:pserver:anoncvs@cvs.mandrakesoft.com:/home/cvs/cooker" ; \ |