SYSSRC= /Users/mesh/m/src/xnu/bsd 

CFLAGS=-I. -I./nfs -I$(SYSSRC) -Wall

OBJS= mount_nfs4.o getmntopts.o

all: setup $(OBJS)
	$(CC) $(OBJS) -o mount_nfs4

setup:
	ln -s ../Darwin-nfs ./nfs


clean:
	@rm -f *.o *~ cscope.out mount_nfs4 ./nfs
