OBJS = vfork.o
vfork.so: $(OBJS)
	$(LINK.c) -shared -o $@ $(OBJS)

clean:
	$(RM) -f ./*~ ./*.o 

distclean: clean
	$(RM) -f vfork.so
