1# This file is in the public domain. 2# 3# Makefile configuration - processed by automake. 4 5# General automake options. 6AUTOMAKE_OPTIONS = 1.13 foreign no-dependencies 7ACLOCAL_AMFLAGS = -I../../m4 -I../../gnulib-m4 8 9# The list of programs that are built. 10bin_PROGRAMS = hello 11 12# The source files of the 'hello' program. 13hello_SOURCES = hello.c 14noinst_HEADERS = names.c 15 16# Define which styles to install and where. 17stylesdir = $(datadir)/color-hello/styles 18styles_DATA = hello-default.css 19 20# Define a C macro STYLESDIR indicating where styles will be installed. 21AM_CPPFLAGS = -DSTYLESDIR=\"$(stylesdir)\" 22 23 24# Link with libtextstyle. 25hello_LDADD = @LIBTEXTSTYLE@ 26 27# Additional files to be distributed. 28EXTRA_DIST = autogen.sh autoclean.sh $(styles_DATA) 29