mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-21 08:24:10 +01:00
15 lines
317 B
Makefile
15 lines
317 B
Makefile
|
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
||
|
|
||
|
SUBDIR= libc libcurses libcompat libedit libkvm libm libmp \
|
||
|
libplot libresolv librpc/rpc libtelnet libterm libutil liby
|
||
|
|
||
|
.if ${MACHINE} == "tahoe"
|
||
|
SUBDIR+=csu/tahoe.pcc
|
||
|
.elif ${MACHINE} == "vax"
|
||
|
SUBDIR+=csu/vax.pcc
|
||
|
.else
|
||
|
SUBDIR+=csu/${MACHINE}
|
||
|
.endif
|
||
|
|
||
|
.include <bsd.subdir.mk>
|