Install gettext-0.18.1.1.tar.gz
[msysgit.git] / mingw / share / doc / gettext / examples / hello-clisp / Makefile.am
blob3911ff3ca37cec9b4dac3c508a1a7f46feed51b3
1 # Example for use of GNU gettext.
2 # This file is in the public domain.
4 # Makefile configuration - processed by automake.
6 # General automake options.
7 AUTOMAKE_OPTIONS = foreign
8 ACLOCAL_AMFLAGS = -I m4
10 # The list of subdirectories containing Makefiles.
11 SUBDIRS = m4 po
13 # The list of programs that are built.
14 bin_SCRIPTS = hello
16 # Compilation of Common Lisp programs.
17 SUFFIXES = .lisp .fas
18 .lisp.fas:
19         clisp -norc -q -c $< -o $@
20 CLEANFILES = *.fas *.lib
22 # Making a Common Lisp program executable.
23 hello: hello.fas
24         (echo '#!@CLISP@'; cat $<) > $@
25         chmod a+x $@
26 CLEANFILES += hello
28 # Additional files to be distributed.
29 EXTRA_DIST = autogen.sh autoclean.sh