• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-smalltalk/
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
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_SCRIPTS = hello
15all-local: hello
16CLEANFILES = hello
17
18# The Smalltalk program is installed as data and invoked through a shell script.
19pkgdata_DATA = hello.st
20hello:
21	{ echo '#!/bin/sh'; \
22	  echo "exec '@GST@' -Q '$(pkgdatadir)/hello.st' \"\$$@\""; \
23	} > $@
24
25# Additional files to be distributed.
26EXTRA_DIST = autogen.sh autoclean.sh
27