391f8a18b3796e2b03ed96d20b532ad238bc9dbb hiram Tue Apr 2 13:43:00 2013 -0700 moving to minimal makefiles for kentUtils build refs #9104 diff --git src/utils/raToTab/makefile src/utils/raToTab/makefile index 386b8d7..2d599ca 100644 --- src/utils/raToTab/makefile +++ src/utils/raToTab/makefile @@ -1,20 +1,13 @@ -include ../../inc/common.mk - +kentSrc = ../.. +A = raToTab +include $(kentSrc)/inc/userApp.mk L += -lm -MYLIBDIR = ../../lib/${MACHTYPE} -MYLIBS = ${MYLIBDIR}/jkweb.a - -O = raToTab.o - -raToTab: $O ${MYLIBS} - ${CC} ${COPT} -o ${BINDIR}/raToTab $O ${MYLIBS} $L - ${STRIP} ${BINDIR}/raToTab${EXE} -clean: - rm -f $O +clean:: + rm -f out.tab out2.tab test: - raToTab in.ra out.tab -head + ${A} in.ra out.tab -head diff expected.tab out.tab - raToTab in.ra -cols=name,function out2.tab + ${A} in.ra -cols=name,function out2.tab diff expected2.tab out2.tab