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

O_TARGET := auth.o
M_OBJS   :=

ifeq ($(PATCHLEVEL),2)
O_OBJS   := auth_syscalls.o
# decisions only in non-maint mode
ifeq ($(CONFIG_RSBAC_AUTH),y)
O_OBJS   += auth_main.o
endif

else

obj-y   := auth_syscalls.o
# decisions only in non-maint mode
obj-$(CONFIG_RSBAC_AUTH) += auth_main.o

endif

include $(TOPDIR)/Rules.make
