shroomgit

static git repos page gen
Log | Files | Refs | README

Makefile (202B)


      1 .PHONY: all shindex shgit clean
      2 
      3 all: shindex shgit
      4 
      5 shindex:
      6 	@mkdir -p bin
      7 	go build -o bin/shindex shindex/shindex.go
      8 
      9 shgit:
     10 	@mkdir -p bin
     11 	go build -o bin/shgit shgit/shgit.go
     12 
     13 clean:
     14 	rm -rf bin