2f81eb835c8cffd5ba9937cec91b3a0f1c64541d
braney
  Wed Aug 18 14:47:31 2021 -0700
fixed a usage message and added a makefile for the tests in
cartEditSuperTrack.c

diff --git src/hg/utils/cartEditSuperTrack/tests/makefile src/hg/utils/cartEditSuperTrack/tests/makefile
new file mode 100644
index 0000000..1b0b401
--- /dev/null
+++ src/hg/utils/cartEditSuperTrack/tests/makefile
@@ -0,0 +1,19 @@
+kentSrc = ../../../..
+include ../../../../inc/common.mk
+
+cartEditSuperTrack = ${DESTBINDIR}/cartEditSuperTrack
+
+all:: test
+
+test:: test1
+	${MAKE} clean
+
+test1: mkout
+	${cartEditSuperTrack} input/test1.txt 1 output/cartEdit1.c
+	cmp expected/cartEdit1.c output/cartEdit1.c
+
+mkout:
+	@mkdir -p output
+
+clean::
+	rm -rf output