File: Makefile.in

package info (click to toggle)
discover 2.1.2-10.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,756 kB
  • sloc: sh: 7,862; ansic: 7,280; xml: 1,809; makefile: 679
file content (43 lines) | stat: -rw-r--r-- 865 bytes parent folder | download | duplicates (9)
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
# $Progeny: Makefile.in 3839 2003-11-17 04:25:01Z dsp $

SUBDIR=			discover

all:
	@${MAKE} __recur TARGET=$@

check test: all
	@cd tests && ${MAKE} check

###############################################################################
# Clean

distclean_FILES=	Makefile

clean:
	@${MAKE} __recur TARGET=$@

distclean:
	@${MAKE} __recur TARGET=$@
	rm -rf ${distclean_FILES}

maintainer-clean:
	@${MAKE} __recur TARGET=$@
	rm -rf ${distclean_FILES}

###############################################################################
# Installation

install:
	@${MAKE} __recur TARGET=$@

uninstall:
	@${MAKE} __recur TARGET=$@

###############################################################################
# Distribution

DISTFILES=		Makefile.in

distdir: ${DISTFILES}
	${top_srcdir}/buildtools/distdir ${distdir}/${_THISDIR_} ${DISTFILES}
	@${MAKE} __recur TARGET=$@