mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 06:39:11 +00:00
28 lines
628 B
Makefile
28 lines
628 B
Makefile
|
BINDIR=/usr/local/bin
|
||
|
MODDIR=/usr/local/lib
|
||
|
|
||
|
VERS=3.3
|
||
|
DATE=2006-01-25
|
||
|
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)
|