#
CC = gcc
CFLAGS = -Wall `libnet-config --defines` 
LDFLAGS = `libnet-config --libs` -lnet

all: c2900xl-crash.o
	gcc -o c2900xl-crash c2900xl-crash.c  $(CFLAGS) $(LDFLAGS)

clean:
	rm -f c2900xl-crash c2900xl-crash.o c2900xl-crash.c~
