c79deb301511fcf0de0ed376c7746e4902804472
chmalee
  Fri May 5 16:59:33 2023 -0700
Experiment number one, can succesfully upload a file and store it via
hgCustom. New userdata library for managing where to store the files

Get skeleton structure of new cgi together

More work in progress, mostly stubbing out the CGI

More work in progress, mostly stubbing out the html page

diff --git src/hg/hgMyData/makefile src/hg/hgMyData/makefile
new file mode 100644
index 0000000..58d39d3
--- /dev/null
+++ src/hg/hgMyData/makefile
@@ -0,0 +1,18 @@
+kentSrc = ../..
+include ../../inc/common.mk
+
+L += $(MYSQLLIBS) -lm
+MYLIBDIR = ../../lib/${MACHTYPE}
+MYLIBS =  $(MYLIBDIR)/jkhgapcgi.a $(MYLIBDIR)/jkhgap.a ${MYLIBDIR}/jkweb.a
+
+A = hgMyData
+O = hgMyData.o
+
+A = hgMyData
+
+include ../../inc/cgi_build_rules.mk
+
+compile:: $O
+	${CC} $O ${MYLIBS} ${L}
+	mv ${AOUT} $A${EXE}
+