#
# File: rsbac/adf/rc/Makefile
#
# Makefile for the Linux rsbac rc decision module.
#
# Author and (c) 1999-2001 Amon Ott
#

O_TARGET := rc.o
M_OBJS   :=

ifeq ($(PATCHLEVEL),2)

O_OBJS   := rc_syscalls.o
# decisions only in non-maint mode
ifneq ($(CONFIG_RSBAC_MAINT),y)
O_OBJS   += rc_main.o
endif

else

obj-y    := rc_syscalls.o
# decisions only in non-maint mode
ifneq ($(CONFIG_RSBAC_MAINT),y)
obj-y += rc_main.o
endif

endif

include $(TOPDIR)/Rules.make
