File: Makefile.in

package info (click to toggle)
configlet 1.8
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,044 kB
  • ctags: 211
  • sloc: python: 1,417; xml: 709; makefile: 139; sh: 44
file content (38 lines) | stat: -rw-r--r-- 782 bytes parent folder | download | duplicates (3)
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
# $Progeny: Makefile.in,v 1.5 2002/03/15 00:22:31 epg Exp $

.POSIX:

SHELL=			/bin/sh -e
srcdir=			@srcdir@
VPATH=			@srcdir@
top_srcdir=		@top_srcdir@

PACKAGE_TARNAME=	@PACKAGE_TARNAME@
PACKAGE_VERSION=	@PACKAGE_VERSION@

INSTALL_DIR=		@INSTALL_DIR@

distclean_FILES=	Makefile .cvsignore
IGNOREFILES=		${distclean_FILES}

DISTFILES=	Makefile.in docbook.ced docbook.mk progeny-fo.xsl progeny.dsl progeny.ent
distname=	${PACKAGE_TARNAME}-${PACKAGE_VERSION}
distdir=	${top_srcdir}/${distname}

all:

.cvsignore: Makefile
	printf "%s\n" "${IGNOREFILES}" > $@

install:
uninstall:
clean:

distclean:
	rm -f ${distclean_FILES}

distdir: ${DISTFILES}
	${INSTALL_DIR} ${distdir}/${_THISDIR_}
	for file in ${DISTFILES}; do					\
		ln -f $${file} ${distdir}/${_THISDIR_}/$${file};	\
	done