5066d40ac8
Rework the makefiles to use pattern rules instead of suffix rules. This is the preferred way to write implicit rules according to the gnu make manual.
12 lines
161 B
Makefile
12 lines
161 B
Makefile
DIR= ${DOCDIR}/openrc
|
|
SRCS= net.example.in
|
|
INC= net.example
|
|
|
|
MK= ../mk
|
|
include ${MK}/os.mk
|
|
|
|
%.example.in: %.example${SFX}
|
|
${CP} $< $@
|
|
|
|
include ${MK}/scripts.mk
|