dotfiles

regexghost dotfiles and scripts
git clone https://git.regexghost.com/dotfiles.git
Log | Files | Refs | README

Makefile (133B)


      1 normal:
      2 	go build -o sub sub.go
      3 
      4 clean:
      5 	rm sub
      6 
      7 install:
      8 	cp sub "${HOME}/.local/bin"
      9 
     10 test:
     11 	./test.sh
     12 
     13 full: normal install clean