forked from cybergarage/mupnp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
52 lines (42 loc) · 1.29 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
SUBDIRS = include lib
if MUPNP_ENABLE_EXAMPLES
SUBDIRS += examples
endif
if MUPNP_ENABLE_TESTS
SUBDIRS += tests
endif
devdocsdir = $(datadir)/doc/clinkc-dev
docsdir = $(datadir)/doc/clinkc0
EXTRA_DIST = debian/changelog \
debian/clinkc0.install \
debian/clinkc-dev.install \
debian/compat \
debian/control \
debian/copyright \
debian/rules \
debian/docs \
include/cybergarage/upnp/cupnp.h.in
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = mupnp.pc
dist_docs_DATA = \
COPYING
dist_devdocs_DATA = \
ChangeLog \
COPYING \
Doxyfile
#nobase_devdocs_DATA = \
# doxygen/html/* \
# doxygen-objc/html/*
doxygen: doxygen/html/* doxygen/html/*
doxygen/html/*:
cd $(srcdir) && doxygen Doxyfile
# scp -r doxygen skonno,[email protected]:/home/groups/c/cl/clinkc/htdocs
doxygen-objc/html/*:
cd $(srcdir) && doxygen Doxyfile.objc
# scp -r doxygen-objc skonno,[email protected]:/home/groups/c/cl/clinkobjc/htdocs
deb: dist
-mkdir $(top_builddir)/debian-build
-cp $(top_builddir)/../$(PACKAGE)*.orig.tar.gz $(top_builddir)/debian-build/
cd $(top_builddir)/debian-build && tar zxf ../$(top_builddir)/$(PACKAGE)-$(VERSION).tar.gz
cd $(top_builddir)/debian-build/$(PACKAGE)-$(VERSION) && dpkg-buildpackage -rfakeroot -sa -D
-rm -rf $(top_builddir)/debian-build/$(PACKAGE)-$(VERSION)