# run "make CDF=1 CXX=KCC" for a KCC build TOP=. include $(TOP)/mkinc all: (cd src; make all) # (cd test; make all) cp bin/ProfParse $(BINDEST) >/dev/null 2>&1 || true cp lib/libProfLogger.so $(LIBDEST) >/dev/null 2>&1 || true (cd python/graphviz/graph; make) cp python/ptrun.py $(BINDEST) lib: (cd src; make lib) bin: (cd src; make bin) test: (cd test; make test) clean: (cd src; make clean) (cd test; make clean) (cd python/graphviz/graph; make clean) .PHONY: test bin