
CFLAGS= -funsigned-char -g -DDEBUG -D_DEBUG

SOURCES=nbtstat.o

nbtstat: ${SOURCES}
	gcc ${CFLAGS} ${SOURCES} -o nbtstat

clean:
	rm -f *.o nbtstat
