f6b69dbcfe28da82b1250fa1b54256812f71785e markd Sat Nov 16 10:16:30 2019 -0800 fixed incorrect recursive make executions diff --git src/hg/hubApi/makefile src/hg/hubApi/makefile index 1589b17..49c4ae3 100644 --- src/hg/hubApi/makefile +++ src/hg/hubApi/makefile @@ -13,16 +13,16 @@ A = hubApi include ../../inc/cgi_build_rules.mk compile:: $O ${CC} $O ${MYLIBS} ${L} mv ${AOUT} $A${EXE} # building your own sandbox also copies result to cgiApi directory # if it exists my:: if [ -d ${cgiApi} ]; then rm -f ${cgiApi}/$A; cp -p ${CGI_BIN_USER}/$A ${cgiApi}/$A; fi test:: - cd tests && make test + cd tests && ${MAKE} test