mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
16 lines
305 B
Makefile
16 lines
305 B
Makefile
# $Id$
|
|
|
|
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
|
|
|
|
.include <bsd.subdir.mk>
|