# Makefile for sample0 all: sample0 CC = gcc CFLAGS = -O -Wall INCLUDE = /usr/src/linux-2.4.0-4GB/include sample0: sample0.c $(CC) -I$(INCLUDE) $(CFLAGS) -o sample0 sample0.c