1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
# libctl: flexible Guile-based control files for scientific software
# Copyright (C) 1998, 1999, 2000, 2001, 2002, Steven G. Johnson
#
# This file may be used without restriction. It is in the public
# domain, and is NOT restricted by the terms of any GNU license.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# Steven G. Johnson can be contacted at stevenj@alum.mit.edu.
##############################################################################
# Makefile.am for programs using libctl (assumes that automake is
# being used, of course). You should only need to change the definitions
# in this section of the file. Replace "example" with the name of
# your program.
SPECIFICATION_FILE = example.scm
EXTRA_DIST = example.scm.in README run.ctl
# change "noinst" to "bin" and uncomment pkgdata line to 'make install' program
noinst_PROGRAMS = example
# pkgdata_DATA = $(SPECIFICATION_FILE)
MY_SOURCES = example.c # plus any other .c/.h files you need
MY_LIBS = # extra libs you need go here
MY_LDFLAGS = # extra -L flags go here
MY_CPPFLAGS = # extra -I include flags go here
MY_DEFS = # extra -D define flags go here
# what is printed out when invoking your program with --version:
VERSION_STRING = "example @VERSION@"
# The following variables should be detected and set by autoconf:
# libctl install. dir., e.g. /usr/local/share/libctl
LIBCTL_DIR = @LIBCTL_DIR@
# gen-ctl-io program
GEN_CTL_IO = @GEN_CTL_IO@
# location of libctl headers and library for this project
LIBCTL_CPPFLAGS = -I$(top_srcdir)/utils -I$(top_builddir)/src
LIBCTL = $(top_builddir)/src/libctl.la # change to -lctl for your project
##############################################################################
# don't (normally) edit below except to replace "example" with your name #
##############################################################################
CTL_DEFS = -DCTL_SCM='"'$(LIBCTL_DIR)/base/ctl.scm'"' \
-DINCLUDE_SCM='"'$(LIBCTL_DIR)/base/include.scm'"' \
-DSPEC_SCM='"'$(pkgdatadir)/$(SPECIFICATION_FILE)'"' \
-DVERSION_STRING='"'$(VERSION_STRING)'"'
example_SOURCES = $(MY_SOURCES)
nodist_example_SOURCES = main.c geom.c ctl-io.h ctl-io.c
BUILT_SOURCES = $(nodist_example_SOURCES)
example_LDADD = $(MY_LIBS) $(LIBCTL)
example_LDFLAGS = $(MY_LDFLAGS)
example_CPPFLAGS = $(MY_CPPFLAGS) $(MY_DEFS) $(CTL_DEFS) $(LIBCTL_CPPFLAGS)
main.c: $(LIBCTL_DIR)/base/main.c
cp -f $(LIBCTL_DIR)/base/main.c $@
geom.c: $(LIBCTL_DIR)/utils/geom.c
cp -f $(LIBCTL_DIR)/utils/geom.c $@
ctl-io.c: $(SPECIFICATION_FILE) $(LIBCTL_DIR)/utils/geom.scm
$(GEN_CTL_IO) --code -o $@ $(SPECIFICATION_FILE) $(LIBCTL_DIR)
ctl-io.h: $(SPECIFICATION_FILE) $(LIBCTL_DIR)/utils/geom.scm
$(GEN_CTL_IO) --header -o $@ $(SPECIFICATION_FILE) $(LIBCTL_DIR)
clean-local:
rm -f ctl-io.* main.* geom.*
|