From 53dbfa4f648fca3a7872a10a77954c9b609a46dd Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sat, 17 Apr 2010 21:38:00 -0400 Subject: [PATCH] adding Flx-Invaders submodule, adding project to top-level Makefile --- .gitmodules | 3 +++ Flx-Invaders | 1 + Makefile | 3 ++- 3 files changed, 6 insertions(+), 1 deletion(-) create mode 160000 Flx-Invaders diff --git a/.gitmodules b/.gitmodules index 55f9ee6..a8155bf 100644 --- a/.gitmodules +++ b/.gitmodules @@ -4,3 +4,6 @@ [submodule "flixel"] path = flixel url = git@github.com:meatballhat/flixel.git +[submodule "Flx-Invaders"] + path = Flx-Invaders + url = git@github.com:meatballhat/Flx-Invaders.git diff --git a/Flx-Invaders b/Flx-Invaders new file mode 160000 index 0000000..821fb61 --- /dev/null +++ b/Flx-Invaders @@ -0,0 +1 @@ +Subproject commit 821fb61d02c6e229d7b8e72ec64200b96ca5de13 diff --git a/Makefile b/Makefile index dc8588b..367f198 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,8 @@ MXMLC := mxmlc MXMLC_FLAGS := -sp $(FLIXEL) all: - cd HelloWorld/src && $(MAKE) + @(cd HelloWorld/src && $(MAKE)) + @(cd Flx-Invaders/src && $(MAKE)) .PHONY: all