Project Info Name.......: gnu-hello
Description: GNU Hello


gnu-hello       
Makefile.am
# Process this file with automake to produce Makefile.in (in this,
# and all subdirectories).
# Makefile for the top-level directory of GNU hello.
#
# Copyright 1997-2026 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see .

# Find gnulib headers.
ACLOCAL_AMFLAGS = -I m4

AM_CPPFLAGS = -Ilib -I$(top_srcdir)/lib -Isrc -I$(top_srcdir)/src

# Tell the linker to omit references to unused shared libraries.
AM_LDFLAGS = $(IGNORE_UNUSED_LIBRARIES_CFLAGS)

# Additional files to distribute.
EXTRA_DIST = \
	README-dev \
	ChangeLog.O \
	m4/gnulib-cache.m4 \
	man/hello.x

# Subdirectories to descend into.
SUBDIRS = po

bin_PROGRAMS = hello
hello_SOURCES = src/hello.c src/system.h

hello_LDADD = lib/lib$(PACKAGE).a \
	$(HARD_LOCALE_LIB) \
	$(LIBC32CONV) \
	$(LIBICONV) \
	$(LIBINTL) \
	$(LIBUNISTRING) \
	$(MBRTOWC_LIB) \
	$(SETLOCALE_NULL_LIB)

localedir = $(datadir)/locale
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@

CLEANFILES =
MAINTAINERCLEANFILES =

if !GIT_CROSS_COMPILING
man_MANS = hello.1
EXTRA_DIST += $(man_MANS)
endif

if BUILD_FROM_GIT
hello.1: hello$(EXEEXT)
	$(AM_V_GEN)$(HELP2MAN) --include=$(top_srcdir)/man/hello.x \
	  $(top_builddir)/hello$(EXEEXT) -o $@-t;
	$(AM_V_at)chmod a=r $@-t
	$(AM_V_at)mv -f $@-t $@

CLEANFILES += $(man_MANS)
endif

TESTS = \
	tests/atexit-1 \
	tests/greeting-1 \
	tests/greeting-2 \
	tests/hello-1 \
	tests/last-1 \
	tests/operand-1 \
	tests/traditional-1

EXTRA_DIST += $(TESTS)

noinst_LIBRARIES =
MOSTLYCLEANFILES =
MOSTLYCLEANDIRS =
BUILT_SOURCES =

LOG_COMPILER = $(SHELL)

TESTS_ENVIRONMENT = \
  top_srcdir=$(top_srcdir) \
  PATH=.$(PATH_SEPARATOR)$(PATH_SEPARATOR)$$PATH \
  HELLO=`echo hello | sed '$(transform)'`; \
  export HELLO PATH top_srcdir;

# Verify that all source files using _() are listed in po/POTFILES.in.
# The idea is to run this before making pretests, as well as official
# releases, so that translators will be sure to have all the messages.
# (From coreutils.)
po-check:
	if test -f po/POTFILES.in; then					\
	  grep -E -v '^(#|$$)' po/POTFILES.in				\
	    | grep -v '^src/false\.c$$' | sort > $@-1;			\
	  files=;							\
	  for file in $$($(CVS_LIST_EXCEPT)) `find * -name '*.[ch]'`; do \
	    case $$file in						\
	    gnulib/* | man/*) continue;;				\
	    esac;							\
	    case $$file in						\
	    *.[ch])							\
	      base=`expr " $$file" : ' \(.*\)\..'`;			\
	      { test -f $$base.l || test -f $$base.y; } && continue;;	\
	    esac;							\
	    files="$$files $$file";					\
	  done;								\
	  grep -E -l '\b(N?_|gettext *)\([^)"]*("|$$)' $$files		\
	    | sort -u > $@-2;						\
	  diff -u $@-1 $@-2 || exit 1;					\
	  rm -f $@-1 $@-2;						\
	fi

include $(top_srcdir)/lib/local.mk
include $(top_srcdir)/doc/local.mk

dist-hook: gen-ChangeLog
	chmod u+w $(distdir)/$(man_MANS)

gen_start_date = 2011-12-17
.PHONY: gen-ChangeLog
gen-ChangeLog:
	$(AM_V_GEN)if test -d .git; then				\
	  log_fix="$(srcdir)/build-aux/git-log-fix";			\
	  test -e "$$log_fix"						\
	    && amend_git_log="--amend=$$log_fix"			\
	    || amend_git_log=;						\
	  $(top_srcdir)/build-aux/gitlog-to-changelog			\
	    $$amend_git_log --since=$(gen_start_date) > $(distdir)/cl-t && \
	    { rm -f $(distdir)/ChangeLog &&				\
	      mv $(distdir)/cl-t $(distdir)/ChangeLog; }		\
	fi
This website is licensed under AGPL-3.0. Feel free to copy!