go-bgp

a collection of golang BGP tools to monitor, archive and serve
git clone git://git.2f30.org/go-bgp
Log | Files | Refs | README

Makefile (184B)


      1 all: allbin
      2 
      3 test:
      4 	go test ./...
      5 
      6 allbin: cmd/archive_server.go cmd/bgpmon.go
      7 	go get
      8 	go build cmd/archive_server.go
      9 	go build cmd/bgpmon.go
     10 
     11 clean:
     12 	rm -f archive_server
     13 	go clean
     14