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
229 B
Makefile
12 lines
229 B
Makefile
# Copyright (c) 2008 Roy Marples <roy@marples.name>
|
|
# Released under the 2-clause BSD license.
|
|
|
|
# Generic definitions
|
|
|
|
_OS_SH= uname -s
|
|
_OS:= $(shell ${_OS_SH})
|
|
OS?= ${_OS}
|
|
include ${MK}/os-${OS}.mk
|
|
|
|
RC_LIB= /$(LIBNAME)/rc
|