Skip to content

Commit

Permalink
win32: make cross-compilation easier
Browse files Browse the repository at this point in the history
The exact prefix for the MinGW32 cross compiler varies
from system to system, so we make it configurable.
  • Loading branch information
ndim authored and Claes Wikstrom committed Feb 22, 2009
1 parent 3ce4ddb commit 9bd036e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions win32/Makefile
Original file line number Diff line number Diff line change
@@ -3,15 +3,15 @@
## To install
# sudo apt-get install mingw32

TARGET = i586-mingw32msvc-

CC = i586-mingw32msvc-gcc
AR = i586-mingw32msvc-ar
LD = i586-mingw32msvc-gcc
CC = $(TARGET)gcc
AR = $(TARGET)ar
LD = $(TARGET)gcc


CP = cp
RM = rm -f
#AR = i586-mingw32msvc-ar
MKDIR = -mkdir

##

0 comments on commit 9bd036e

Please sign in to comment.