File: Makefile.cvs

package info (click to toggle)
aft 2%3A5.098-3
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 548 kB
  • sloc: perl: 1,271; sh: 439; makefile: 108
file content (27 lines) | stat: -rwxr-xr-x 459 bytes parent folder | download | duplicates (10)
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
# -*-makefile-*-
# Makefile.cvs
# 2002/02/10 alane@geeksrus.net
#

AUTOHEADER=	autoheader${ACSUFFIX}
AUTOCONF=	autoconf${ACSUFFIX}
AUTOCONF_ARGS=	

ACLOCAL=	aclocal${AMSUFFIX}
AUTOMAKE=	automake${AMSUFFIX}
AUTOMAKE_ARGS=	-a --foreign

UNCLEAN=	aclocal.m4\
		configure\
		install-sh\
		missing\
		mkinstalldirs\
		Makefile.in
prep:
	-rm -f ${UNCLEAN}
	${ACLOCAL}
	-test -n "${WITH_AUTOHEADER}" && ${AUTOHEADER}
	${AUTOMAKE} ${AUTOMAKE_ARGS}
	${AUTOCONF}

#EOF