Súbor: [Platon] / libplaton / Makefile.in (stiahnutie)
Revízia 1.14, Sat Sep 9 06:59:51 2006 UTC (18 years, 1 month ago) by nepto
Zmeny od 1.13: +5 -2 [lines]
Added stuff generating VERSION file
|
# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
# Main Makefile for libplaton library.
# $Platon: libplaton/Makefile.in,v 1.13 2002-12-09 14:53:31 rajo Exp $
PACKAGE = @PACKAGE@
VERSION = @VERSION@
# Directories {{{
top_builddir = .
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
sbindir = @sbindir@
libexecdir = @libexecdir@
datadir = @datadir@
sysconfdir = @sysconfdir@
sharedstatedir = @sharedstatedir@
localstatedir = @localstatedir@
libdir = @libdir@
infodir = @infodir@
mandir = @mandir@
man3dir = $(mandir)/man3
includedir = @includedir@
includedir_platon = $(includedir)/platon
oldincludedir = /usr/include
DESTDIR =
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
# }}} Directories
# top_builddir will be absolute path
top_builddir := $(shell cd $(top_builddir) > /dev/null 3>&1 && pwd || :)
# Targets {{{
# SUBDIRS = platon utils
SUBDIRS = platon
include_HEADERS =
noinst_HEADERS = platon/cfgfile.h \
platon/cmdline.h \
platon/shared.h \
platon/str/dynfgets.h \
platon/str/strctype.h \
platon/str/strdyn.h \
platon/str/strplus.h
noinst_SCRIPTS =
SCRIPTS = $(noinst_SCRIPTS)
DISTFILES = AUTHORS COPYING README INSTALL TODO VERSION \
Makefile.in configure.in \
config.h.in \
config.guess config.sub configure \
install-sh mkinstalldirs rebuild \
platon/ \
$(include_HEADERS) $(noinst_HEADERS) \
doc/
# }}} Targets
all: configure-scripts makefiles $(MANS) all-subdirs
include $(top_builddir)/Rules.make
HEADERS = $(include_HEADERS) $(noinst_HEADERS) $(CONFIG_HEADER)
# needed!
platon.o:
VERSION: $(top_builddir)/Makefile
echo $(VERSION) > $@
$(top_builddir)/Makefile: $(top_srcdir)/Makefile.in $(top_builddir)/config.status
@cd $(top_builddir) \
&& CONFIG_FILES=Makefile CONFIG_HEADERS= \
$(SHELL) ./config.status
# Section: Install {{{
install: all install-subdirs
uninstall: uninstall-subdirs
installcheck:
install-exec:
uninstall-exec:
install-lib:
uninstall-lib:
install-data:
install-strip:
installdirs:
install-man: $(MANS)
uninstall-man:
# }}} Section: Install
# vim600: fdm=marker fdc=3
Platon Group <platon@platon.sk> http://platon.sk/
|