• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-c++-wxwidgets/
1# Example for use of GNU gettext.
2# This file is in the public domain.
3#
4# Makefile configuration - processed by automake.
5
6# General automake options.
7AUTOMAKE_OPTIONS = foreign no-dependencies
8ACLOCAL_AMFLAGS = -I m4
9
10# The list of subdirectories containing Makefiles.
11SUBDIRS = m4 po
12
13# The list of programs that are built.
14bin_PROGRAMS = hello
15
16# The source files of the 'hello' program.
17hello_SOURCES = hello.cc
18
19# Define a C macro LOCALEDIR indicating where catalogs will be installed.
20DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
21
22CPPFLAGS += $(WX_CPPFLAGS)
23CFLAGS = $(WX_CFLAGS_ONLY)
24CXXFLAGS += $(WX_CXXFLAGS_ONLY)
25
26# Link time dependencies.
27LDADD = $(WX_LDADD)
28LIBS += $(WX_LIBS)
29
30# Additional files to be distributed.
31EXTRA_DIST = autogen.sh autoclean.sh
32