0096b565ed86ed6a93d0d4b3a43fb8a192bb39be kent Fri Aug 2 15:36:08 2019 -0700 Adding tabToTabDir to the compile chain. diff --git src/tabFile/makefile src/tabFile/makefile index 0357b32..35c8774 100644 --- src/tabFile/makefile +++ src/tabFile/makefile @@ -2,31 +2,32 @@ kentSrc = .. include ${kentSrc}/inc/localEnvironment.mk include ${kentSrc}/inc/common.mk # note: lists such as the following need to be defined *before* # they are used in the wildcard target rules. An oddity of gnu make # List of all directories to build ALL_APPS = \ tabInfo \ tabQuery \ tabRepeatedFieldsToArrayField \ - tabToHtml + tabToHtml \ + tabToTabDir all: $(ALL_APPS:%=%.all) %.all: cd $* && echo $* && $(MAKE) test: $(ALL_APPS:%=%.test) %.test: @test -s $*/tests/makefile && (echo $*; cd $* && $(MAKE) test) || true clean: $(ALL_APPS:%=%.clean) touch non-empty-rm.o - find . -name \*.o -print | xargs rm