76c80e8a2d474b39149845cc226bdfad4332a2cf hiram Tue Aug 5 12:45:53 2025 -0700 typo fix in makefile from user hartzell at github diff --git src/hg/liftOver/makefile src/hg/liftOver/makefile index 986944d3ab3..3c08b02cc03 100644 --- src/hg/liftOver/makefile +++ src/hg/liftOver/makefile @@ -1,26 +1,26 @@ kentSrc = ../.. # recursive make uglyness (see userArp.mk) ifeq (${PROG},) PROGS = liftOver liftOverMerge default:: ${PROGS:%=%_default} %_default: ${MAKE} default PROG=$* -compile:: ${PROGS:%=%_complie} +compile:: ${PROGS:%=%_compile} %_compile: ${MAKE} compile PROG=$* clean:: ${PROGS:%=%_clean} %_clean:: ${MAKE} clean PROG=$* install: ${PROGS:%=%_} %_install: ${MAKE} install PROG=$* test:: ${MAKE} test PROG=testing else A = ${PROG} include ${kentSrc}/inc/userApp.mk endif