Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / lib / compat / Makefile
1 # $FreeBSD: src/lib/compat/Makefile,v 1.6.2.2 2001/03/23 22:09:37 peter Exp $
2 # $DragonFly: src/lib/compat/Attic/Makefile,v 1.2 2003/06/17 04:26:40 dillon Exp $
3
4 SUBDIR=
5
6 .if ${MACHINE_ARCH} == "i386"
7 # Note that compat21 is *not* for the 2.1.x branch!
8 .if defined(COMPAT1X) || defined(RELEASEDIR)
9 SUBDIR+=        compat1x
10 .endif
11 .if defined(COMPAT20) || defined(RELEASEDIR)
12 SUBDIR+=        compat20
13 .endif
14 .if defined(COMPAT21) || defined(RELEASEDIR)
15 SUBDIR+=        compat21
16 .endif
17 .if defined(COMPAT22) || defined(RELEASEDIR)
18 SUBDIR+=        compat22
19 .endif
20 .endif
21
22 .if exists (${.CURDIR}/compat3x.${MACHINE_ARCH})
23 .if defined(COMPAT3X) || defined(RELEASEDIR)
24 SUBDIR+=        compat3x.${MACHINE_ARCH}
25 .endif
26 .endif
27
28 .if exists (${.CURDIR}/compat4x.${MACHINE_ARCH})
29 .if defined(COMPAT4X) || defined(RELEASEDIR)
30 SUBDIR+=        compat4x.${MACHINE_ARCH}
31 .endif
32 .endif
33
34 .include <bsd.subdir.mk>