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
|
## -*- Mode: Makefile -*-
## ---------------------------------------------------------------------
## Makefile.am -- process this file with automake to produce Makefile.in
##
## AutoGen copyright 1992-1999 Bruce Korb
##
## Author: Bruce Korb <bkorb@gnu.org>
## Maintainer: Bruce Korb <bkorb@gnu.org>
## Created: Mon Jun 30 15:35:12 1997
## Last Modified: Thu Jul 29 13:40:42 1999
## by: bkorb
## ---------------------------------------------------------------------
## $Id: Makefile.am,v 1.33 2002/02/23 23:09:03 bkorb Exp $
## ---------------------------------------------------------------------
bin_PROGRAMS = columns
columns_SOURCES = columns.c opts.c opts.h
BUILT_SOURCES = columns.menu columns.texi columns.1
EXTRA_DIST = opts.def
AGEXE = $(top_builddir)/agen5/@AGEXE@ -L $(top_srcdir)/autoopts
columns_LDADD = $(top_builddir)/autoopts/libopts.la
man_MANS = columns.1
INCLUDES = @INCLIST@
CONFIG_CLEAN_FILES = columns.texi columns.menu columns.1
MAINTAINERCLEANFILES = Makefile.in $(CONFIG_CLEAN_FILES)
gen : $(BUILT_SOURCES)
all : gen
## opts.h cannot be built until columns is built, so no rules for it.
columns.1 columns.menu columns.texi : gen-stamp
gen-stamp : opts.def columns
top_builddir=$(top_builddir) \
$(AGEXE) -Taginfo -bcolumns -DLEVEL=section \
$(top_srcdir)/columns/opts.def
$(AGEXE) -T agman1 -b columns $(srcdir)/opts.def
@touch $@
clean : columns-clean
distclean : columns-clean
columns-clean :
rm -f *-stamp
# Makefile.am ends here
|