comparison src/libusb.mk @ 3014:b6c7244a2f66

Use HOST_BINDIR, HOST_LIBDIR, and HOST_INCDIR instead of MXE_BINDIR, MXE_LIBDIR, and MXE_INCDIR. Attempt to use these variables consistently instead of using $(HOST_PREFIX)/bin, $(HOST_PREFIX)/lib, and $(HOST_PREFIX)/include
author John W. Eaton <jwe@octave.org>
date Sun, 02 Jun 2013 16:59:24 -0400
parents 100e618349f7
children 951da75fd09c
comparison
equal deleted inserted replaced
3013:bcc26ffe9a0f 3014:b6c7244a2f66
27 --kill-at \ 27 --kill-at \
28 --add-stdcall-underscore \ 28 --add-stdcall-underscore \
29 --def libusb0.def \ 29 --def libusb0.def \
30 --output-lib libusb.a 30 --output-lib libusb.a
31 31
32 $(INSTALL) -d '$(HOST_PREFIX)/include' 32 $(INSTALL) -d '$(HOST_INCDIR)'
33 $(INSTALL) -m644 '$(1)/src/lusb0_usb.h' '$(HOST_PREFIX)/include/' 33 $(INSTALL) -m644 '$(1)/src/lusb0_usb.h' '$(HOST_INCDIR)'
34 $(INSTALL) -d '$(HOST_PREFIX)/lib' 34 $(INSTALL) -d '$(HOST_LIBDIR)'
35 $(INSTALL) -m644 '$(1)/libusb.a' '$(HOST_PREFIX)/lib/' 35 $(INSTALL) -m644 '$(1)/libusb.a' '$(HOST_LIBDIR)'
36 $(INSTALL) -m644 '$(1)/libusbd.a' '$(HOST_PREFIX)/lib/' 36 $(INSTALL) -m644 '$(1)/libusbd.a' '$(HOST_LIBDIR)'
37 endef 37 endef