## Standard package makefile

include $(GOROOT)/src/Make.inc

### Set TARG and GOFILES for this particular directory
TARG=lsp
GOFILES=\
	lsp.go\

include $(GOROOT)/src/Make.pkg

## This is how to put the compiled library in the right place
contrib: _obj/$(TARG).a
	cp -p _obj/$(TARG).a ../contrib

## You probably don't want to do this
official: _obj/$(TARG).a
	cp -p _obj/$(TARG).a ../official