diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-12-18 13:08:29 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-12-18 13:08:29 +0000 |
commit | 68ef254ec0d874d2284a33f990be51baddb92488 (patch) | |
tree | ea2e7dd29a5eec351ef7d38a96014c821c55acdc /lst/Makefile | |
parent | 6b5d37090668c9337c3e95135e3ff80441349313 (diff) | |
download | ldetect-lst-68ef254ec0d874d2284a33f990be51baddb92488.tar ldetect-lst-68ef254ec0d874d2284a33f990be51baddb92488.tar.gz ldetect-lst-68ef254ec0d874d2284a33f990be51baddb92488.tar.bz2 ldetect-lst-68ef254ec0d874d2284a33f990be51baddb92488.tar.xz ldetect-lst-68ef254ec0d874d2284a33f990be51baddb92488.zip |
add verif
Diffstat (limited to 'lst/Makefile')
-rw-r--r-- | lst/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/lst/Makefile b/lst/Makefile new file mode 100644 index 00000000..3287f310 --- /dev/null +++ b/lst/Makefile @@ -0,0 +1,28 @@ +include ../Makefile.config + + +build: CardsNames + +clean: + rm -f *~ CardsNames + +CardsNames: Cards+ ../convert/Cards2CardsNames.pl + rm -f $@ + ../convert/Cards2CardsNames.pl $< > $@ + chmod a-w $@ + + +install: + for i in pcitable usbtable; do \ + (echo "# !! The original version is available in CVS at" ; \ + echo "# export CVSROOT=:pserver:anoncvs@cvs.mandrakesoft.com:/home/cvs/cooker" ; \ + echo "# cvs login (password \`\`cvs'')" ; \ + echo "# cvs checkout soft/$(project)" ; \ + echo "# or" ; \ + echo "# export CVSROOT=:ext:LOGIN@cvs.mandrakesoft.com:/home/cvs/cooker" ; \ + echo "# export CVS_RSH=ssh" ; \ + echo "# cvs checkout soft/$(project)" ; \ + cat $$i \ + ) > $(dir)/$$i; done + + install -m 644 Cards+ CardsNames MonitorsDB isdn.db $(dir) |