os_kernel_lab/related_info/lec2/Makefile
2013-09-23 09:20:58 +08:00

9 lines
184 B
Makefile

all: hello.c
echo "compile and watch the syscalls from hello"
gcc -o hello hello.c
strace -c ./hello
echo "watch the interrupts in linux"
more /proc/interrupts
clean:
rm ./hello