blob: 58fd23392287b113ff5c1228cf50117b40f18952 (
plain)
1
2
3
4
5
6
7
8
|
# See LICENSE file for copyright and license details.
SRCDIR = src
ARDIR = bin/archive
SHDIR = bin/shared
SRC != find ${SRCDIR} -name '*.c'
AROBJ = ${SRC:${SRCDIR}/%.c=${ARDIR}/%.o}
SHOBJ = ${SRC:${SRCDIR}/%.c=${SHDIR}/%.o}
|