CCOPT	= -O2
CFLAGS	= $(CCOPT) -Wall -I.
LIBS	= -lnl

all: getdelays 

getdelays: getdelays.c
	$(CC) $(CFLAGS) -o $@ $< $(LIBS)	

