Tweaking #40 pull request. Have the `mkdir` on several lines because
of my 80 columns OCD. It also makes prettier printouts at runtime.
Also removed the spurrious creation of the man directory (it was
already done on the `install-doc:` target).
all : library
install: library src/monocypher.h install-doc
- mkdir -p $(DESTDIR)/$(PREFIX)/lib $(DESTDIR)/$(PREFIX)/include $(PKGCONFIG) $(MAN_DIR)
+ mkdir -p $(DESTDIR)/$(PREFIX)/include
+ mkdir -p $(DESTDIR)/$(PREFIX)/lib
+ mkdir -p $(PKGCONFIG)
cp lib/libmonocypher.a lib/libmonocypher.so $(DESTDIR)/$(PREFIX)/lib
cp src/monocypher.h $(DESTDIR)/$(PREFIX)/include
@echo "Creating $(PKGCONFIG)/monocypher.pc"