Diff for /embedaddon/libnet/Makefile.am between versions 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2013/07/22 11:54:41 version 1.1.1.3, 2023/09/27 11:11:37
Line 1 Line 1
 # $Id$  
 #  #
 # Libnet automake information file  # Libnet automake information file
 # Copyright (c) 1998 - 2004 Mike D. Schiffman <mike@infonexus.com>  # Copyright (c) 1998 - 2004 Mike D. Schiffman <mike@infonexus.com>
 # All rights reserved.  # All rights reserved.
 #  #
# Process this file with automake to produce a Makefile.in script.DISTCHECK_CONFIGURE_FLAGS = --enable-doxygen-doc --disable-doxygen-html --disable-samples
 ACLOCAL_AMFLAGS           = -I m4 ${ACLOCAL_FLAGS}
   
include $(top_srcdir)/Makefile.am.commonbin_SCRIPTS    = libnet-config
 pkgconfigdir   = $(libdir)/pkgconfig
 pkgconfig_DATA = libnet.pc
 dist_doc_DATA  = README.md ChangeLog.md LICENSE
 EXTRA_DIST     = README.win32 autogen.sh libnet-config.in
 SUBDIRS        = include src win32
   
SUBDIRS = include src sample doc win32if ENABLE_SAMPLES
 SUBDIRS       += sample
 endif
   
EXTRA_DIST = Makefile.am.commonif ENABLE_DOXYGEN
 SUBDIRS       += doc
   
bin_SCRIPTS = libnet-config#
 # Doxygen rules from m4/ax_prog_doxygen.m4
 
 @DX_RULES@
 
 doc: doxygen-doc
         $(AM_V_GEN)cd $(DX_DOCDIR) && ./fixmanpages && cd -
 
 ## The distribution should include man pages, which are generated
 dist-hook: doc
 else
 doc:
         @echo "Doxygen documentation (html + man) disabled, skipping ..."
 endif
 
 ## Generate MD5 checksum file
 MD5 = md5sum
 md5-dist:
         @for file in $(DIST_ARCHIVES); do               \
                 $(MD5) $$file > $$file.md5;             \
         done
 
 ## Check if tagged in git
 release-hook:
         @if [ ! `git tag | grep v$(PACKAGE_VERSION)` ]; then                            \
                 echo;                                                                   \
                 printf "\e[1m\e[41mCannot find release tag v$(PACKAGE_VERSION)\e[0m\n"; \
                 printf "\e[1m\e[5mDo release anyway?\e[0m "; read yorn;                 \
                 if [ "$$yorn" != "y" -a "$$yorn" != "Y" ]; then                         \
                         printf "OK, aborting release.\n";                               \
                         exit 1;                                                         \
                 fi;                                                                     \
                 echo;                                                                   \
         else                                                                            \
                 echo;                                                                   \
                 printf "\e[1m\e[42mFound GIT release tag v$(PACKAGE_VERSION)\e[0m\n";   \
                 printf "\e[1m\e[44m>>Remember to push tags!\e[0m\n";                    \
                 echo;                                                                   \
         fi
 
 ## Target to run when building a release
 release: doc distcheck release-hook md5-dist
         @echo
         @echo "Resulting release files:"
         @echo "================================================================="
         @for file in $(DIST_ARCHIVES); do                                               \
                 printf "%-32s Distribution tarball\n" $$file;                           \
                 printf "%-32s " $$file.md5; cat $$file.md5 | cut -f1 -d' ';             \
                 mv $$file* ../;                                                         \
         done
 
 # (GNU make only) Unless we say otherwise, spare us the
 # “Entering/Leaving directory ...” messages
 GNUMAKEFLAGS = $(if $(value VERBOSE),,--no-print-directory)

Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>