Begin to consolidate files
diff --git a/gen.c b/gen.c
new file mode 100644
index 0000000..2f015d6
--- /dev/null
+++ b/gen.c
@@ -0,0 +1,14 @@
+// consolidate code into this file 
+
+#include "bitmap.h"
+#include <dlfcn.h>
+
+int main(int argc, char const *argv[])
+{
+  if(argc != 5)
+  {
+    printf("Usage: %s <base ft.so dir> <test ft.so dir> <font dir> <char size>", argv[0]);
+  }
+  return 0;
+
+}
diff --git a/readme.txt b/readme.txt
index 48f7199..ec22f3b 100644
--- a/readme.txt
+++ b/readme.txt
@@ -3,3 +3,7 @@
 
 Compile with new:
 gcc compare-new-to-old.c bitmap.c murmur3.c -I <new ft dir>/include -L <new ft dir>/objs -lfreetype -o compare-new-to-old
+
+For consolidated gen.c:
+gcc gen.c bitmap.c murmur3.c -I/usr/local/include/freetype2/ -lfreetype -o gen
+./genc <base ft.so dir> <test ft.so dir> <font dir> <char size>