go.nanomsg.org/mangos/v3@v3.4.3-0.20240217232803-46464076f1f5/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