summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 48070964b38fb20f973d824a1d42a09ed9679914 (plain)
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
#
# Libnet automake information file
# Copyright (c) 1998 - 2004 Mike D. Schiffman <mike@infonexus.com>
# All rights reserved.
#
DISTCHECK_CONFIGURE_FLAGS = --enable-doxygen-doc --disable-samples
ACLOCAL_AMFLAGS           = -I m4 ${ACLOCAL_FLAGS}

pkgconfigdir   = $(libdir)/pkgconfig
pkgconfig_DATA = libnet.pc
doc_DATA       = README.md ChangeLog.md LICENSE
EXTRA_DIST     = README.md ChangeLog.md LICENSE README.win32 autogen.sh
SUBDIRS        = bin include src win32

if ENABLE_DOXYGEN
SUBDIRS       += doc
endif
if ENABLE_SAMPLES
SUBDIRS       += sample
endif

#
# Doxygen rules from m4/ax_prog_doxygen.m4
# 
@DX_RULES@

doc: doxygen-doc
	$(AM_V_GEN)cd $(DX_DOCDIR) && ./fixmanpages && cd -

# (GNU make only) Unless we say otherwise, spare us the
# “Entering/Leaving directory ...” messages
GNUMAKEFLAGS = $(if $(value VERBOSE),,--no-print-directory)