freebsd-dev/lib/compat/Makefile
Murray Stokely 7a67e396b5 Add compat4x.i386 directory.
Approved by:	jkh
2001-02-09 18:59:02 +00:00

26 lines
520 B
Makefile

# $FreeBSD$
SUBDIR=
# Note that compat21 is *not* for the 2.1.x branch!
.if defined(COMPAT1X) || defined(RELEASEDIR)
SUBDIR+= compat1x
.endif
.if defined(COMPAT20) || defined(RELEASEDIR)
SUBDIR+= compat20
.endif
.if defined(COMPAT21) || defined(RELEASEDIR)
SUBDIR+= compat21
.endif
.if defined(COMPAT22) || defined(RELEASEDIR)
SUBDIR+= compat22
.endif
.if defined(COMPAT3X) || defined(RELEASEDIR)
SUBDIR+= compat3x
.endif
.if defined(COMPAT4X) || defined(RELEASEDIR)
SUBDIR+= compat4x
.endif
.include <bsd.subdir.mk>