Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigigraph / Makefile @ 0f317fa6

History | View | Annotate | Download (738 Bytes)

1 0931fc44 Thomas BURGUIERE
NAME := vigigraph
2 2f5d4f00 Aurelien BOMPARD
3 0f317fa6 Aurelien BOMPARD
all: qooxdoo build
4 2f5d4f00 Aurelien BOMPARD
5 5772efa1 Francois POIROTTE
qooxdoo:
6
	make -C javascript build
7
	cp -f javascript/build/script/vigigraph.js vigigraph/public/js
8
	cp -rf javascript/build/resource vigigraph/public/
9
10
clean_qooxdoo:
11
	$(RM) vigigraph/public/js/vigigraph.js
12
	$(RM) -r vigigraph/public/resource
13
	$(RM) -r javascript/build/
14
15 0f317fa6 Aurelien BOMPARD
install: qooxdoo
16
	$(PYTHON) setup.py install --single-version-externally-managed --root=$(DESTDIR) --record=INSTALLED_FILES
17
	mkdir -p $(DESTDIR)$(HTTPD_DIR)
18
	ln -f -s $(SYSCONFDIR)/vigilo/$(NAME)/$(NAME).conf $(DESTDIR)$(HTTPD_DIR)/
19
	echo $(HTTPD_DIR)/$(NAME).conf >> INSTALLED_FILES
20
21 c06c4ff2 Aurelien BOMPARD
include buildenv/Makefile.common
22
23 210a39de Francis LAHEUGUERE
MODULE := $(NAME)
24
CODEPATH := $(NAME)
25 0931fc44 Thomas BURGUIERE
lint: lint_pylint
26 4c964d96 Aurelien BOMPARD
tests: tests_nose
27 5772efa1 Francois POIROTTE
clean: clean_python clean_qooxdoo