Started on common and core packages.

This commit is contained in:
2016-03-26 15:49:05 -05:00
parent 2434a43cec
commit 807d0397a1
39 changed files with 1849 additions and 0 deletions

16
build/Makefile Normal file
View File

@ -0,0 +1,16 @@
all: gba_build sdl_build sdl_debug_build
gba_build:
@if [ -d gba ]; then \
make -C gba ${ARGS}; \
fi
sdl_build:
@if [ -d sdl ]; then \
make -C sdl ${ARGS}; \
fi
sdl_debug_build:
@if [ -d sdl_debug ]; then \
make -C sdl_debug ${ARGS}; \
fi