6ab8ef45856166ed4ddeeae442baa346f11dcd5a
angie
  Thu Apr 16 10:20:18 2020 -0700
Added missing backslash that caused make to fail with a 'recipe commences before first target' error.

diff --git src/utils/makefile src/utils/makefile
index b144be2..0d12be5 100644
--- src/utils/makefile
+++ src/utils/makefile
@@ -185,31 +185,31 @@
 	ggKgmlToTab \
 	ggMsrToTab \
 	ggPidToTab \
 	ggPpiToTab \
 	ggSpfToTab \
 	bedNamePickFirst \
 	bedBestTranscript \
 	genePredToBed \
 	cgiSmokeTest \
 	phegenToBed \
 	doLocusName \
 	cancerMafToBigBed \
 	pq \
 	bedAppendPaperInfo \
 	googleSheetToBigBed \
-	doClinvarLift
+	doClinvarLift \
 	${USER_APP_SCRIPTS}
 
 # List of all directories to build
 
 ALL_APPS = $(UTILS_APPLIST) $(UCSC_APPS)
 
 # all: builds all utilities here
 
 all: $(ALL_APPS:%=%.all)
 
 %.all:
 	cd $* && echo $* && $(MAKE)
 
 # userAppsB: builds the user application specific programs
 # it would have been nice to be able to use the target name 'userApps'