• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-clisp/
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
15
16# Compilation of Common Lisp programs.
17SUFFIXES = .lisp .fas
18.lisp.fas:
19	clisp -norc -q -c $< -o $@
20CLEANFILES = *.fas *.lib
21
22# Making a Common Lisp program executable.
23hello: hello.fas
24	(echo '#!@CLISP@'; cat $<) > $@
25	chmod a+x $@
26CLEANFILES += hello
27
28# Additional files to be distributed.
29EXTRA_DIST = autogen.sh autoclean.sh
30