915f525e9cb15e471026df8235e039cb415bdd2c
hiram
  Thu May 23 10:28:23 2013 -0700
begin to construct the Makefile and add the license statements refs #9104
diff --git src/userApps/Makefile src/userApps/Makefile
new file mode 100644
index 0000000..8561acd
--- /dev/null
+++ src/userApps/Makefile
@@ -0,0 +1,19 @@
+#  Makefile for userApps project
+#  performs the operations of fetching selected directories from
+#  the kent source tree using 'git' and then building the utilities
+#  in the kent source tree.
+
+samtabixDir = ${CURDIR}/samtabix
+DESTDIR = ${CURDIR}
+BINDIR = /bin
+extraCFlags =
+mysqlInc =
+mysqlLibs =
+pngLib =
+
+fetchSource:
+	./fetchKentSource.sh
+	@echo -n "size of fetched kent source tree: "
+	@du -hs kent
+	@echo -n "number of files in kent source tree: "
+	@find ./kent -type f | wc -l