File: Makefile.in

package info (click to toggle)
rcs-blame 1.4%2B20240206-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, 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-- 687 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
# Copyright 2022, Thomas E. Dickey
# makefile-template for autoconf

@SET_MAKE@

SHELL	= @SHELL@
srcdir	= @srcdir@
VPATH	= @srcdir@

THIS	= blame
ACTUAL	= `echo $(THIS) | sed '$(transform)'`

transform = @program_transform_name@

prefix	= @prefix@
datarootdir = @datarootdir@
datadir = @datadir@
mandir	= @mandir@
man1dir = $(mandir)/man1

INSTALL	= @INSTALL@
INSTALL_DATA = @INSTALL_DATA@

all:
check:
clean:
distclean:
	-rm -f Makefile

$(DESTDIR)$(man1dir) :
	mkdir -p $@

install: $(DESTDIR)$(man1dir) $(THIS).1
	$(INSTALL_DATA) "$(THIS).1" "$(DESTDIR)$(man1dir)/$(ACTUAL)".1

uninstall:
	rm -f "$(DESTDIR)$(man1dir)/$(ACTUAL).1"

.PHONY: all check clean distclean install uninstall