Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / Makefile @ 8450ae48

History | View | Annotate | Download (486 Bytes)

1
NAME := vigiboard
2
all: build
3

    
4
install:
5
	$(PYTHON) setup.py install --single-version-externally-managed --root=$(DESTDIR) --record=INSTALLED_FILES
6
	mkdir -p $(DESTDIR)$(HTTPD_DIR)
7
	ln -f -s $(SYSCONFDIR)/vigilo/vigiboard/vigiboard.conf $(DESTDIR)$(HTTPD_DIR)/
8
	echo $(HTTPD_DIR)/vigiboard.conf >> INSTALLED_FILES
9
	mkdir -p $(DESTDIR)/var/log/vigilo/$(NAME)
10

    
11
include buildenv/Makefile.common
12

    
13
MODULE := $(NAME)
14
CODEPATH := $(NAME)
15

    
16
lint: lint_pylint
17
tests: tests_nose
18
clean: clean_python