Created a build target for floodlight.
diff --git a/src/floodlight/Makefile b/src/floodlight/Makefile
new file mode 100644
index 0000000..d4cfa39
--- /dev/null
+++ b/src/floodlight/Makefile
@@ -0,0 +1,21 @@
+# Because I am old and crotchety and my fingers can't stop from running 
+#	`make` commands
+
+.PHONY: all doc tests clean
+
+all:
+	ant
+
+init:
+	ant init
+
+doc:
+	ant javadoc
+
+tests: all unit-tests
+
+unit-tests:
+	ant tests
+
+clean:
+	ant clean
diff --git a/src/ofmgr/build.xml b/src/floodlight/build.xml
similarity index 100%
rename from src/ofmgr/build.xml
rename to src/floodlight/build.xml