include $(srcdir)/Rules.mk

objs = $(PORTOBJS)

all: $(libname) $(testprogs)
	@true
$(libname): $(objs)
	$(ARADD) $(libname) $(objs)
	$(RANLIB) $(libname)

tests: $(testprogs)
	@true

clean realclean distclean:
	rm -f *.o

pre-install post-install:
	@true
install:
	@for i in *.3; do \
		if test -f $$i; then \
		echo "installing $$i"; \
		$(INSTALL_DATA) $$i $(man3dir)/`basename $$i .3`.$(man3ext); \
		fi; \
	done
