daddfa7cc7
- cd9660 relies on an #include "iso.h" but does not build any .c files out of source, so remove reach-over .PATH - ffs does not rely on any sys/ headers, so remove -I from CFLAGS. - ffs_tables from sys/ is used by ffs; move the SRCS entry from the top- level Makefile to ffs' Makefile.inc. Sponsored by: The FreeBSD Foundation
10 lines
202 B
Makefile
10 lines
202 B
Makefile
# $FreeBSD$
|
|
#
|
|
|
|
.PATH: ${SRCDIR}/ffs ${SRCTOP}/sys/ufs/ffs
|
|
SRCS+= ffs_alloc.c ffs_balloc.c ffs_bswap.c ffs_subr.c ufs_bmap.c
|
|
SRCS+= buf.c mkfs.c
|
|
|
|
# Reach-over source from sys/ufs/ffs
|
|
SRCS+= ffs_tables.c
|