Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use cc instead gcc and remove unused variables #67

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions libusb/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,26 +29,18 @@
ifdef host_prefix
override host_prefix := $(host_prefix)-
endif
ifdef host_prefix_x86
override host_prefix_x86 := $(host_prefix_x86)-
endif
ifdef cflags
DBG_DEFINE = $(cflags)
endif
ifdef ddk
DDK_INCLUDE = -I$(ddk)/include/ddk
endif

CC = $(host_prefix)gcc
CC = $(host_prefix)cc
LD = $(host_prefix)ld
WINDRES = $(host_prefix)windres
DLLTOOL = $(host_prefix)dlltool

CC86 = $(host_prefix_x86)gcc
LD86 = $(host_prefix_x86)ld
WINDRES86 = windres
DLLTOOL86 = dlltool

MAKE = make
CP = cp
CD = cd
Expand Down