nanomsg.org/go/mangos/v2@v2.0.9-0.20200203084354-8a092611e461/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 remote_reqlat local_reqlat 8 9 all: perf $(LINKS) 10 11 clean: 12 $(RM) $(LINKS) perf 13 14 perf: 15 $(GO) build . 16 17 $(LINKS): 18 $(RM) $@ 19 ln -s perf $@ 20