gotest.tools/gotestsum@v1.11.0/contrib/notify/Makefile (about)

     1  GO = go
     2  INSTALL = install
     3  
     4  ICONS = icons/test-pass.svg icons/test-fail.svg
     5  ICONDIR = $(HOME)/.icons  # or /usr/share/icons
     6  
     7  build:
     8  	$(GO) build
     9  
    10  install: $(ICONS)
    11  	$(GO) install
    12  	$(INSTALL) -d $(ICONDIR)
    13  	$(INSTALL) $^ $(ICONDIR)