iotivity 0.9.0
[platform/upstream/iotivity.git] / resource / csdk / libcoap-4.1.1 / doc / Makefile.in
1 # Makefile for libcoap
2 #
3 # Copyright (C) 2010 Olaf Bergmann <bergmann@tzi.org>
4
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18
19 # the library's version
20 VERSION:=@PACKAGE_VERSION@
21
22 # tools
23 @SET_MAKE@
24 SHELL = /bin/sh
25 MKDIR = mkdir
26 DOXYGEN= @DOXYGEN@
27
28 top_builddir = @top_builddir@
29
30 DISTDIR?=$(top_builddir)/@PACKAGE_TARNAME@-@PACKAGE_VERSION@
31 FILES:=Makefile.in Doxyfile.in html
32
33 doc:    Doxyfile
34         $(DOXYGEN) $< >./doxygen.out 2>&1 
35
36 clean:
37         @rm -rf html
38
39 distclean:      clean
40         @rm -rf $(DISTDIR)
41         @rm -f *~ 
42
43 dist:   doc
44         test -d $(DISTDIR)/doc || mkdir $(DISTDIR)/doc
45         cp -r $(FILES) $(DISTDIR)/doc