Import Floodlight v0.90
diff --git a/src/ext/floodlight/Makefile b/src/ext/floodlight/Makefile
new file mode 100644
index 0000000..63c4dd0
--- /dev/null
+++ b/src/ext/floodlight/Makefile
@@ -0,0 +1,36 @@
+# Because I am old and crotchety and my fingers can't stop from running 
+#	`make` commands
+
+.PHONY: docs doc all test tests count install clean
+
+all:
+	ant
+
+init:
+	ant init
+
+docs:
+	ant javadoc
+
+doc:
+	ant javadoc
+
+javadoc:
+	ant javadoc
+
+check: tests
+test: tests
+
+tests: all unit-tests
+
+unit-tests:
+	ant tests
+
+regression-tests:
+	make -C regress tests
+
+count: 
+	@find src -name \*.java | xargs wc -l | sort -n
+
+clean:
+	ant clean