diff --git a/.gitmodules b/.gitmodules index 8772361..1407f72 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "HelloWorld"] path = HelloWorld url = git://github.com/AdamAtomic/HelloWorld.git +[submodule "flixel"] + path = flixel + url = git@github.com:meatballhat/flixel.git diff --git a/HelloWorld b/HelloWorld index 383388c..332616e 160000 --- a/HelloWorld +++ b/HelloWorld @@ -1 +1 @@ -Subproject commit 383388c9282054269e90d007461bd90c2ca6d35b +Subproject commit 332616e645c26753a137eaf36d921e6fcff77a74 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..dc8588b --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +FLIXEL := $(PWD)/flixel + +MXMLC := mxmlc +MXMLC_FLAGS := -sp $(FLIXEL) + +all: + cd HelloWorld/src && $(MAKE) + + +.PHONY: all +.EXPORT_ALL_VARIABLES: diff --git a/flixel b/flixel new file mode 160000 index 0000000..c2cf2b7 --- /dev/null +++ b/flixel @@ -0,0 +1 @@ +Subproject commit c2cf2b705436ca2119b6e78646c4ec68935cf061