-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
70 lines (54 loc) · 1.5 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
NAME = $(shell cat bundle.json | sed -n 's/"name"//p' | tr -d '", :')
VERSION = $(shell cat bundle.json | sed -n 's/"version"//p' | tr -d '", :')
PROJECT = sanji-bundle-$(NAME)
DISTDIR = $(PROJECT)-$(VERSION)
ARCHIVE = $(CURDIR)/$(DISTDIR).tar.gz
SANJI_VER ?= 1.0
INSTALL_DIR = $(DESTDIR)/usr/lib/sanji-$(SANJI_VER)/$(NAME)
STAGING_DIR = $(CURDIR)/staging
PROJECT_STAGING_DIR = $(STAGING_DIR)/$(DISTDIR)
TARGET_FILES = \
LICENSE \
bundle.json \
requirements.txt \
index.py \
systime/__init__.py \
systime/ntp.py \
systime/systime.py \
data/ntp.json.factory
DIST_FILES= \
$(TARGET_FILES) \
README.md \
Makefile \
tests/__init__.py \
tests/test_index.py \
tests/test_systime/__init__.py \
tests/test_systime/test_ntp.py \
tests/test_systime/test_systime.py
INSTALL_FILES=$(addprefix $(INSTALL_DIR)/,$(TARGET_FILES))
STAGING_FILES=$(addprefix $(PROJECT_STAGING_DIR)/,$(DIST_FILES))
all:
clean:
rm -rf $(DISTDIR)*.tar.gz $(STAGING_DIR)
@rm -rf .coverage
@find ./ -name *.pyc | xargs rm -rf
distclean: clean
pylint:
flake8 -v --exclude=.git,__init__.py .
test:
nosetests --with-coverage --cover-erase --cover-package=index,systime -v
dist: $(ARCHIVE)
$(ARCHIVE): distclean $(STAGING_FILES)
@mkdir -p $(STAGING_DIR)
cd $(STAGING_DIR) && \
tar zcf $@ $(DISTDIR)
$(PROJECT_STAGING_DIR)/%: %
@mkdir -p $(dir $@)
@cp -a $< $@
install: $(INSTALL_FILES)
$(INSTALL_DIR)/%: %
@mkdir -p $(dir $@)
@cp -a $< $@
uninstall:
-rm $(addprefix $(INSTALL_DIR)/,$(TARGET_FILES))
.PHONY: clean dist pylint test