mariadb/Makefile

14 lines
386 B
Makefile
Raw Normal View History

TAGS: */*.c */*.h
etags */*.c */*.h
SRCDIRS = newbrt src src/tests cxx cxx/tests utils db-benchmark-test db-benchmark-test-cxx
clean:
for d in $(SRCDIRS); do (cd $$d; $(MAKE) -k clean); done
build:
for d in $(SRCDIRS); do (cd $$d; $(MAKE) -k); done
build-coverage:
for d in $(SRCDIRS); do (cd $$d; $(MAKE) -k -k OPTFLAGS="-O0" GCOV_FLAGS="-fprofile-arcs -ftest-coverage"); done