mirror of
https://github.com/opnsense/src.git
synced 2026-06-06 07:12:52 -04:00
12 lines
166 B
Makefile
12 lines
166 B
Makefile
#
|
|
# Check that a simple suffix rule is correctly processed.
|
|
|
|
test1: TEST1.b
|
|
diff -u TEST1.a TEST1.b
|
|
|
|
.SUFFIXES:
|
|
|
|
.SUFFIXES: .a .b
|
|
|
|
.a.b:
|
|
cat ${.IMPSRC} >${.TARGET}
|