| OLD | NEW |
| 1 #TARGETTYPE is not defined, to allow selection between static lib or DLL with dd
k_build | 1 #TARGETTYPE is not defined, to allow selection between static lib or DLL with dd
k_build |
| 2 TARGETNAME=libusb-1.0 | 2 TARGETNAME=libusb-1.0 |
| 3 DLLDEF=..\libusb-1.0.def | 3 DLLDEF=..\libusb-1.0.def |
| 4 | 4 |
| 5 !IFNDEF MSC_WARNING_LEVEL | 5 !IFNDEF MSC_WARNING_LEVEL |
| 6 MSC_WARNING_LEVEL=/W3 | 6 MSC_WARNING_LEVEL=/W3 |
| 7 !ENDIF | 7 !ENDIF |
| 8 | 8 |
| 9 !IFDEF STATIC_LIBC | 9 !IFDEF STATIC_LIBC |
| 10 USE_LIBCMT=1 | 10 USE_LIBCMT=1 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 # and the following with Visual Studio 2010: | 22 # and the following with Visual Studio 2010: |
| 23 # "fatal error C1047: The object or library file 'libusb-1.0.lib' was created wi
th | 23 # "fatal error C1047: The object or library file 'libusb-1.0.lib' was created wi
th |
| 24 # an older compiler than other objects; rebuild old objects and libraries" | 24 # an older compiler than other objects; rebuild old objects and libraries" |
| 25 USER_C_FLAGS=/GL- | 25 USER_C_FLAGS=/GL- |
| 26 | 26 |
| 27 TARGETLIBS=$(SDK_LIB_PATH)\kernel32.lib | 27 TARGETLIBS=$(SDK_LIB_PATH)\kernel32.lib |
| 28 | 28 |
| 29 SOURCES=..\core.c \ | 29 SOURCES=..\core.c \ |
| 30 ..\descriptor.c \ | 30 ..\descriptor.c \ |
| 31 ..\io.c \ | 31 ..\io.c \ |
| 32 ..\strerror.c \ |
| 32 ..\sync.c \ | 33 ..\sync.c \ |
| 34 ..\hotplug.c \ |
| 33 threads_windows.c \ | 35 threads_windows.c \ |
| 34 poll_windows.c \ | 36 poll_windows.c \ |
| 35 windows_usb.c \ | 37 windows_usb.c \ |
| 36 ..\libusb-1.0.rc | 38 ..\libusb-1.0.rc |
| OLD | NEW |