Remove cruft.

This commit is contained in:
Ryan Prichard 2012-01-21 17:33:41 -08:00
parent 7e4c06c2e1
commit 4350fd40d5

View File

@ -2,18 +2,12 @@ UNAME_S = $(shell uname -s)
ifneq (,$(findstring MINGW,$(UNAME_S)))
# MSYS/MINGW environment
# Native Win32 toolchain
CC = mingw32-gcc
CXX = mingw32-g++
else ifneq (,$(findstring CYGWIN,$(UNAME_S)))
# Cygwin environment
# Native Win32 toolchain
CC = i686-pc-mingw32-gcc
CXX = i686-pc-mingw32-g++
else
$(error Could not detect CYGWIN or MSYS/MINGW environment)
endif