SRC=nstat.c
OBJ=$(SRC:.c=.o)
CFLAGS=$(FLAGS)

nstat: $(OBJ)
	$(CC) $(OBJ) $(CFLAGS) $(LIBS) -o nstat

clean:
	rm -f *.o nstat
