-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile
42 lines (31 loc) · 932 Bytes
/
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
#!/usr/bin/make
PYTEST?=pytest-3
prefix?=/usr/local
all:
deb:
DEB_BUILD_OPTIONS=nocheck fakeroot dpkg-buildpackage -uc -b
deb_clean:
fakeroot debian/rules clean
install:
install -D kicad-diff.py $(DESTDIR)$(prefix)/bin/kicad-diff.py
install -D kicad-git-diff.py $(DESTDIR)$(prefix)/bin/kicad-git-diff.py
install -D kicad-diff-init.py $(DESTDIR)$(prefix)/bin/kicad-diff-init.py
test:
rm -rf output
$(PYTEST) --test_dir output
t1:
rm -rf pp
-$(PYTEST) --log-cli-level debug -k "$(SINGLE_TEST)" --test_dir pp
@echo "********************" Output
@cat pp/*/output.txt
@echo "********************" Error
@tail -n 30 pp/*/error.txt
test_server:
pytest-3 --test_dir output
clean:
distclean: clean
uninstall:
-rm -f $(DESTDIR)$(prefix)/bin/kicad-diff.py
-rm -f $(DESTDIR)$(prefix)/bin/kicad-git-diff.py
-rm -f $(DESTDIR)$(prefix)/bin/kicad-diff-init.py
.PHONY: all install clean distclean uninstall deb deb_clean