# use it if your kernel is not the current one where you compile
INCLUDES=-I/home/fbe/linux-2.1.125-fb/include

all: fbcon-test

fbcon-test: fbcon-test.c fbtools.c
	gcc $(INCLUDES) -Wall -O2 -o fbcon-test fbcon-test.c fbtools.c

clean:
	rm -f fbcon-test *~ *.o .gdb_history

tgz:
	( cd .. ; tar zcvf fbcon-test-0.1.tgz fbcon-test/ )
