Cleanup build system

This commit is contained in:
2016-12-23 18:06:27 -06:00
parent 1053351da6
commit 3241050ddf
2 changed files with 18 additions and 16 deletions

View File

@ -8,13 +8,13 @@ gba_build:
fi
native_build:
@if [ -d ${TARGET}-release ]; then \
${MAKE} -C ${TARGET}-release ${ARGS}; \
@if [ -d ${HOST_ENV}-release ]; then \
${MAKE} -C ${HOST_ENV}-release ${ARGS}; \
fi
native_debug_build:
@if [ -d ${TARGET}-debug ]; then \
${MAKE} -C ${TARGET}-debug ${ARGS}; \
@if [ -d ${HOST_ENV}-debug ]; then \
${MAKE} -C ${HOST_ENV}-debug ${ARGS}; \
fi
windows_release: