-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
46 lines (40 loc) · 1 KB
/
Makefile
File metadata and controls
46 lines (40 loc) · 1 KB
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
include buildsys.mk
SUBDIRS = po pixmaps src
MAN = conspire.1
install-extra:
install-extra:
for i in conspire.pc; do \
${INSTALL_STATUS}; \
if ${MKDIR_P} ${DESTDIR}${libdir}/pkgconfig && ${INSTALL} -m 644 $$i ${DESTDIR}${libdir}/pkgconfig/$$i; then \
${INSTALL_OK}; \
else \
${INSTALL_FAILED}; \
fi \
done
for i in conspire.desktop; do \
${INSTALL_STATUS}; \
if ${MKDIR_P} ${DESTDIR}${datadir}/applications && ${INSTALL} -m 644 $$i ${DESTDIR}${datadir}/applications/$$i; then \
${INSTALL_OK}; \
else \
${INSTALL_FAILED}; \
fi \
done
uninstall-extra:
for i in conspire.pc; do \
if test -f ${DESTDIR}${libdir}/pkgconfig/$$i; then \
if rm -f ${DESTDIR}${libdir}/pkgconfig/$$i; then \
${DELETE_OK}; \
else \
${DELETE_FAILED}; \
fi \
fi \
done
for i in conspire.desktop; do \
if test -f ${DESTDIR}${datadir}/applications/$$i; then \
if rm -f ${DESTDIR}${datadir}/applications/$$i; then \
${DELETE_OK}; \
else \
${DELETE_FAILED}; \
fi \
fi \
done