-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
69 lines (64 loc) · 1.8 KB
/
Makefile.am
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
## Process this file with automake to produce Makefile.in
SUBDIRS = src po
EXTRA_DIST = \
autogen.sh \
files \
examples \
doc
DISTCLEANFILES = \
autom4te.cache/* \
intl/* \
m4/* \
aclocal.m4 \
compile \
config.guess \
config.rpath \
config.status \
config.sub \
configure \
depcomp \
install-sh \
missing \
ABOUT-NLS \
Makefile.in \
config.h \
config.h.in \
config.log \
configure \
stamp-h1 \
stamp-h.in \
src/Makefile.in \
po/Rules-quot \
po/[email protected] \
po/remove-potcdate.sin \
po/Makevars.template \
po/boldquot.sed \
po/insert-header.sin \
po/stamp-po \
po/[email protected] \
po/quot.sed \
po/Makefile.in.in \
po/xnec2c.pot \
Makefile
install-data-local:
@$(NORMAL_INSTALL)
if test -d files/; then \
mkdir -p $(DESTDIR)/usr/share/applications/; \
cp files/$(PACKAGE).desktop $(DESTDIR)/usr/share/applications/; \
mkdir -p $(DESTDIR)/usr/share/pixmaps/; \
mkdir -p $(DESTDIR)/usr/share/icons/hicolor/scalable/apps/; \
cp files/$(PACKAGE).svg $(DESTDIR)/usr/share/pixmaps/; \
cp files/$(PACKAGE).svg $(DESTDIR)/usr/share/icons/hicolor/scalable/apps/; \
mkdir -p $(DESTDIR)/usr/share/$(PACKAGE); \
cp files/$(PACKAGE).glade $(DESTDIR)/usr/share/$(PACKAGE); \
cp files/link.svg files/unlink.svg $(DESTDIR)/usr/share/$(PACKAGE); \
fi; \
if !(test -d $(DESTDIR)/usr/share/doc/$(PACKAGE)); then \
mkdir -p $(DESTDIR)/usr/share/doc/$(PACKAGE)/examples/; \
cp examples/* $(DESTDIR)/usr/share/doc/$(PACKAGE)/examples/; \
fi; \
if test -d doc/; then \
cp -r doc/* $(DESTDIR)/usr/share/doc/$(PACKAGE)/; \
mkdir -p $(DESTDIR)/usr/share/man/man1/; \
cp -r doc/$(PACKAGE).1.gz $(DESTDIR)/usr/share/man/man1/; \
fi;