CFLAGS=-O

all: usermount

usermount: usermount.o access.o
	$(CC) $(CFLAGS) -o usermount usermount.o access.o

clean:
	rm -f *.o
