summaryrefslogtreecommitdiff
path: root/regress/usr.bin/make/mk24
blob: 8b1ac07cdecc3b9503a4fd1845e0062f43dfc46d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# $OpenBSD: mk24,v 1.1 2006/09/17 19:02:13 espie Exp $

# .SUFFIXES should void suffixes rules

.SUFFIXES: .1st .2nd .3rd

# Two suffixes implicit rules
.1st.2nd:
	cp $*.1st $@

# one suffix implicit rule
.2nd:
	cp $*.2nd $@

.2nd.3rd:
	cp $*.2nd $@

.SUFFIXES:

.SUFFIXES: .3rd