-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMakefile.am
45 lines (40 loc) · 919 Bytes
/
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
# Makefile.am for Idesk 0.7.8
SUBDIRS = src
MAINTAINERCLEANFILES = aclocal.m4 config.h.in configure Makefile.in stamp-h.in src/default.h
ACLOCAL_AMFLAGS = -I .
EXTRA_DIST = \
acinclude.m4 \
AUTHORS \
COPYING \
INSTALL \
README \
TODO \
ChangeLog \
NEWS
install-data-local:
@$(NORMAL_INSTALL)
if test -d $(srcdir)/examples; then \
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir); \
$(INSTALL_DATA) $(srcdir)/README $(DESTDIR)$(pkgdatadir); \
for example in $(srcdir)/examples/*; do \
if test -f $$example; then \
$(INSTALL_DATA) $$example $(DESTDIR)$(pkgdatadir); \
fi \
done \
fi
dist-hook:
if test -d examples; then \
mkdir $(distdir); \
for d in examples/*; do \
if test -f $$d; then \
cp -ar $$d $(distdir); \
fi \
done \
fi
uninstall-local:
rm -rf $(pkgdatadir)/*
rmdir $(pkgdatadir)
distclean-local:
rm -f *\~
source-doc:
doxygen Doxyfile