forked from expeyes/expeyes-programs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
72 lines (67 loc) · 2.46 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
71
72
DESTDIR =
SUBDIRS = $(shell ls -d doc bin firmware po clib/expeyes-clib microhope microhope/microhope-doc 2>/dev/null)
all:
python setup.py build
python3 setup.py build
for d in $(SUBDIRS); do \
if [ -x $$d/configure ]; then \
(cd $$d; ./configure -prefix=/usr; make all;) \
else \
make -C $$d $@; \
fi; \
done
# make the bootloader hex file
make -C microhope/firmware atmega32
install:
# for python-expeyes
if grep -Eq "Debian|Ubuntu" /etc/issue; then \
python setup.py install --install-layout=deb \
--root=$(DESTDIR)/ --prefix=/usr; \
python3 setup.py install --install-layout=deb \
--root=$(DESTDIR)/ --prefix=/usr; \
else \
python setup.py install --root=$(DESTDIR)/ --prefix=/usr; \
python3 setup.py install --root=$(DESTDIR)/ --prefix=/usr; \
fi
install -d $(DESTDIR)/lib/udev/rules.d/
install -m 644 99-phoenix.rules $(DESTDIR)/lib/udev/rules.d/
# for expeyes
install -d $(DESTDIR)/usr/share/expeyes
cp -a eyes eyes-junior $(DESTDIR)/usr/share/expeyes
install -d $(DESTDIR)/usr/share/icons
install -m 644 pixmaps/expeyes-logo.png \
$(DESTDIR)/usr/share/icons/expeyes.png
install -m 644 pixmaps/expeyes-junior-icon.png \
$(DESTDIR)/usr/share/icons
install -m 644 pixmaps/expeyes-progman-jr-doc.png \
$(DESTDIR)/usr/share/icons
install -m 644 pixmaps/expeyes-progman-jr-doc.svg \
$(DESTDIR)/usr/share/icons
install -m 644 pixmaps/nuclear-icon.png \
$(DESTDIR)/usr/share/icons
install -d $(DESTDIR)/usr/share/applications
install -m 644 desktop/expeyes.desktop \
desktop/expeyes-junior.desktop desktop/Phoenix-ASM.desktop \
$(DESTDIR)/usr/share/applications
make -C po install DESTDIR=$(DESTDIR)
# for expeyes-doc-common
install -d $(DESTDIR)/usr/share/icons
install -m 644 pixmaps/*doc.png $(DESTDIR)/usr/share/icons
install -d $(DESTDIR)/usr/share/applications
install -m 644 desktop/*doc.desktop $(DESTDIR)/usr/share/applications
# subdirs stuff
for d in $(SUBDIRS); do \
make -C $$d $@ DESTDIR=$(DESTDIR); \
done
# fix permissions in /usr/share/expeyes
find $(DESTDIR)/usr/share/expeyes -type f -exec chmod 644 {} \;
# for expeyes-clib
ln -s /usr/lib/expeyes $(DESTDIR)/usr/share/expeyes/clib
clean:
rm -rf *~ *.pyc build/ eyes/*~ eyes/*.pyc eyes-junior/*~ eyes-junior/*.pyc doc/fr/Docs/eyes.out
for d in $(SUBDIRS); do \
[ ! -f $$d/Makefile ] || make -C $$d distclean || make -C $$d clean; \
done
# clean the bootloader hex file
make -C microhope/firmware clean
.PHONY: all install clean