#
# Makefile for syscall_logger_module. Assumes being used via
# the kernel's top Makefile.
#

ifeq "$(KERNEL_DIR)" ""
	KERNEL_DIR=/usr/src/linux
endif

all:
	@echo
	@echo "use the './comp' script to compile this module"
	@echo

MI_OBJS += syscall_logger_module.o

include $(KERNEL_DIR)/Rules.make

clean:
	$(RM) *.o
