Add support for MinGW cross compiling

This commit is contained in:
2016-12-23 03:41:11 -06:00
parent 1b2f87197b
commit 666f455cfd
7 changed files with 46 additions and 6 deletions
+6 -1
View File
@@ -1,4 +1,4 @@
all: gba_build native_build native_debug_build
all: gba_build native_build native_debug_build windows_build
gba_build:
@if [ -d gba ]; then \
@@ -14,3 +14,8 @@ native_debug_build:
@if [ -d debug ]; then \
make -C debug ${ARGS}; \
fi
windows_build:
@if [ -d windows ]; then \
make -C windows ${ARGS}; \
fi