# This Makefile assumes that linux-2.6.8.1 in the current directory contains # the patched Linux source that implements Pulse. -- tongli CC = gcc SRC_C = detect_deadlock.c pulse.c EXE = detect_deadlock pulse CFLAGS = -g -Ilinux-2.6.8.1/include all: $(EXE) clean: rm -f $(EXE)