Add a master Makefile with docker dev env support and address compiler warning that showed up in the Docker dev env

This commit is contained in:
2016-12-22 20:57:57 -06:00
parent 02bbd75606
commit eeff110b31
5 changed files with 93 additions and 27 deletions
+16
View File
@@ -0,0 +1,16 @@
all: gba_build native_build native_debug_build
gba_build:
@if [ -d gba ]; then \
make -C gba ${ARGS}; \
fi
native_build:
@if [ -d release ]; then \
make -C release ${ARGS}; \
fi
native_debug_build:
@if [ -d debug ]; then \
make -C debug ${ARGS}; \
fi