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

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

clean:
	rm -f *.o nstat
