diff options
author | Patrick McCarty <patrick.mccarty@linux.intel.com> | 2013-02-07 13:13:52 -0800 |
---|---|---|
committer | Patrick McCarty <patrick.mccarty@linux.intel.com> | 2013-02-07 13:13:52 -0800 |
commit | 218d368fde033409a605095676e2629add9e8b24 (patch) | |
tree | 0c7e4a1591eef31ecab6c7cf9ad710a96d83b96b /Makefile.am | |
download | libasyncns-218d368fde033409a605095676e2629add9e8b24.tar.gz libasyncns-218d368fde033409a605095676e2629add9e8b24.tar.bz2 libasyncns-218d368fde033409a605095676e2629add9e8b24.zip |
Imported Upstream version 0.8upstream/0.8upstream
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..1b218c4 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,46 @@ +# This file is part of libasyncns. +# +# Copyright 2005-2008 Lennart Poettering +# +# libasyncns is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as +# published by the Free Software Foundation, either version 2.1 of the +# License, or (at your option) any later version. +# +# libasyncns is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with libasyncns. If not, see +# <http://www.gnu.org/licenses/>. + +ACLOCAL_AMFLAGS = -I m4 + +EXTRA_DIST = bootstrap.sh README LICENSE +SUBDIRS=libasyncns doc doxygen + +MAINTAINERCLEANFILES=README +noinst_DATA = README + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = libasyncns.pc + +README: + rm -f README + $(MAKE) -C doc README + ln -s doc/README README + +homepage: all dist doxygen + test -d $$HOME/homepage/private + mkdir -p $$HOME/homepage/private/projects/libasyncns $$HOME/homepage/private/projects/libasyncns/doxygen + cp libasyncns-@PACKAGE_VERSION@.tar.gz $$HOME/homepage/private/projects/libasyncns + cp doc/README.html doc/style.css $$HOME/homepage/private/projects/libasyncns + cp -a doxygen/html/* $$HOME/homepage/private/projects/libasyncns/doxygen + ln -sf README.html $$HOME/homepage/private/projects/libasyncns/index.html + +doxygen: + $(MAKE) -C doxygen doxygen + +.PHONY: homepage doxygen |