CFLAGS=-Wall -g -I../libnfs -L../libnfs

trymount: trymount.c
	gcc ${CFLAGS} -o trymount trymount.c -lnfs

clean:
	rm -f trymount trymount.core

