2016-12-16 18:23:04 -05:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2016-11-16 09:43:16 -05:00
|
|
|
# Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2016-12-16 18:23:04 -05:00
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
|
|
|
# are also available at https://curl.haxx.se/docs/copyright.html.
|
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
###########################################################################
|
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = foreign no-dependencies
|
|
|
|
|
2016-11-16 09:43:16 -05:00
|
|
|
MANPAGE = $(top_builddir)/docs/curl.1
|
|
|
|
|
2017-02-25 17:38:25 -05:00
|
|
|
include Makefile.inc
|
2016-11-16 09:43:16 -05:00
|
|
|
|
2017-03-30 02:12:37 -04:00
|
|
|
EXTRA_DIST = $(DPAGES) MANPAGE.md gen.pl $(OTHERPAGES) CMakeLists.txt
|
2016-11-16 09:43:16 -05:00
|
|
|
|
|
|
|
all: $(MANPAGE)
|
|
|
|
|
2017-05-08 09:10:09 -04:00
|
|
|
$(MANPAGE): $(DPAGES) $(OTHERPAGES) Makefile.inc
|
2017-02-06 16:47:41 -05:00
|
|
|
@PERL@ $(srcdir)/gen.pl mainpage $(srcdir) > $(MANPAGE)
|