File: Makefile.in

package info (click to toggle)
rcs-blame 1.4%2B20240206-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,816 kB
  • sloc: ansic: 15,922; sh: 10,108; makefile: 399; yacc: 389; lex: 156
file content (39 lines) | stat: -rw-r--r-- 694 bytes parent folder | download
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
# $Id: Makefile.in,v 1.5 2024/02/04 19:49:24 tom Exp $
# Copyright 2022,2024 Thomas E. Dickey
# makefile-template for autoconf

@SET_MAKE@

VPATH	= @srcdir@
SHELL	= @SHELL@

all :: config.h

all \
check \
clean \
distclean \
install \
uninstall ::
	( cd doc && $(MAKE) $@ )
	( cd lib && $(MAKE) $@ )
	( cd src && $(MAKE) $@ )
	( cd tests && $(MAKE) $@ )

distclean ::
	-rm -f blame.spec
	-rm -f *.log *.out

distclean ::
	-rm -f config.h stamp-h1
	-rm -f config.status config.cache config.log
	-rm -f configure.lineno configure.status.lineno
	-rm -f Makefile

.SUFFIXES:

.PHONY: all check \
	clean \
	info install install-data install-exec install-info install-man \
	installdirs \
	uninstall