ITS#7656 fix install target

vmware
John Hewson 11 years ago committed by Howard Chu
parent 86551828ab
commit ef899fe84e
  1. 8
      libraries/liblmdb/Makefile

@ -48,10 +48,10 @@ PROGS = $(IPROGS) mtest mtest2 mtest3 mtest4 mtest5
all: $(ILIBS) $(PROGS) all: $(ILIBS) $(PROGS)
install: $(ILIBS) $(IPROGS) $(IHDRS) install: $(ILIBS) $(IPROGS) $(IHDRS)
cp $(IPROGS) $(DESTDIR)$(prefix)/bin for f in $(IPROGS); do cp $$f $(DESTDIR)$(prefix)/bin; done
cp $(ILIBS) $(DESTDIR)$(prefix)/lib for f in $(ILIBS); do cp $$f $(DESTDIR)$(prefix)/lib; done
cp $(IHDRS) $(DESTDIR)$(prefix)/include for f in $(IHDRS); do cp $$f $(DESTDIR)$(prefix)/include; done
cp $(IDOCS) $(DESTDIR)$(prefix)/man/man1 for f in $(IDOCS); do cp $$f $(DESTDIR)$(prefix)/man/man1; done
clean: clean:
rm -rf $(PROGS) *.[ao] *.so *~ testdb rm -rf $(PROGS) *.[ao] *.so *~ testdb

Loading…
Cancel
Save