Blame gettext-tools/examples/hello-c-gnome/Makefile.am

Packit Bot 06c835
# Example for use of GNU gettext.
Packit Bot 06c835
# This file is in the public domain.
Packit Bot 06c835
#
Packit Bot 06c835
# Makefile configuration - processed by automake.
Packit Bot 06c835
Packit Bot 06c835
# General automake options.
Packit Bot 06c835
AUTOMAKE_OPTIONS = foreign no-dependencies
Packit Bot 06c835
ACLOCAL_AMFLAGS = -I m4
Packit Bot 06c835
Packit Bot 06c835
# The list of subdirectories containing Makefiles.
Packit Bot 06c835
SUBDIRS = m4 po
Packit Bot 06c835
Packit Bot 06c835
# The list of programs that are built.
Packit Bot 06c835
bin_PROGRAMS = hello
Packit Bot 06c835
Packit Bot 06c835
# The source files of the 'hello' program.
Packit Bot 06c835
hello_SOURCES = hello.c
Packit Bot 06c835
Packit Bot 06c835
# Define a C macro LOCALEDIR indicating where catalogs will be installed.
Packit Bot 06c835
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
Packit Bot 06c835
Packit Bot 06c835
# Make sure the gnome.h include file is found.
Packit Bot 06c835
AM_CPPFLAGS = $(GNOME_INCLUDEDIR)
Packit Bot 06c835
Packit Bot 06c835
# Link time dependencies.
Packit Bot 06c835
LDADD = $(GNOME_LIBDIR) $(GNOMEUI_LIBS) @LIBINTL@
Packit Bot 06c835
Packit Bot 06c835
# Additional files to be distributed.
Packit Bot 06c835
EXTRA_DIST = autogen.sh autoclean.sh