github.com/gdamore/mangos@v1.4.0/perf/Makefile (about) 1 # 2 # Makefile to buld nanomsg compatible tests 3 # 4 GO = go 5 RM = rm -f 6 LINKS = local_lat remote_lat local_thr remote_thr inproc_thr inproc_lat 7 8 all: perf $(LINKS) 9 10 clean: 11 $(RM) $(LINKS) perf 12 13 perf: 14 $(GO) build . 15 16 $(LINKS): 17 $(RM) $@ 18 ln -s perf $@ 19