mirror of
https://github.com/gatieme/LDD-LinuxDeviceDrivers.git
synced 2026-08-21 06:24:16 +08:00
22 lines
594 B
Makefile
22 lines
594 B
Makefile
# Makefile for the memory fault injection engine.
|
|
#
|
|
# Author: HIT CS HDMC team.
|
|
# Create: 2010-3-12 8:46
|
|
# Last modified: 2010-6-13 13:55:29
|
|
# Description:
|
|
# This program is loaded as a kernel(v2.6.18 or later) module.
|
|
# Use "make install" to load it into kernel.
|
|
# Use "make remove" to remove the module out of kernel.
|
|
#
|
|
|
|
obj-m := mem.o
|
|
all:
|
|
make -C /lib/modules/`uname -r`/build M=`pwd` modules
|
|
install:
|
|
insmod memoryEngine.ko
|
|
remove:
|
|
rmmod memoryEngine
|
|
clean:
|
|
make -C /lib/modules/`uname -r`/build M=`pwd` clean
|
|
rm -f modules.order Module.symvers Module.markers
|