mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 12:49:34 +00:00
42c3c6a80b
git-svn-id: https://svn.fhem.de/fhem/trunk@119 2b470e98-0d58-463d-a4d8-8e2adae1ed80
28 lines
628 B
Makefile
28 lines
628 B
Makefile
BINDIR=/usr/local/bin
|
|
MODDIR=/usr/local/lib
|
|
|
|
VERS=4.2
|
|
DATE=2007-12-02
|
|
DIR=fhem-$(VERS)
|
|
|
|
all:
|
|
@echo Nothing to do for all.
|
|
@echo To install, check the Makefile, and then \'make install\'
|
|
|
|
install:
|
|
cp fhem.pl $(BINDIR)
|
|
cp -rp FHEM $(MODDIR)
|
|
perl -pi -e 's,modpath .,modpath $(MODDIR),' examples/*
|
|
|
|
dist:
|
|
@echo Version is $(VERS), Date is $(DATE)
|
|
mkdir .f
|
|
cp -rp * .f
|
|
find .f -name \*.orig -print | xargs rm -f
|
|
find .f -type f -print |\
|
|
xargs perl -pi -e 's/=VERS=/$(VERS)/g;s/=DATE=/$(DATE)/g'
|
|
mv .f fhem-$(VERS)
|
|
tar cf - fhem-$(VERS) | gzip > fhem-$(VERS).tar.gz
|
|
mv fhem-$(VERS)/docs/*.html .
|
|
rm -rf fhem-$(VERS)
|