Guest User

Untitled

a guest
Jan 26th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.23 KB | None | 0 0
  1. include $(GOROOT)/src/Make.inc
  2.  
  3. TARG = units
  4.  
  5. GOFILES = \
  6.     units.go
  7.  
  8. CLEANFILES += \
  9.     units.go
  10.  
  11. include $(GOROOT)/src/Make.cmd
  12.  
  13. .PHONY: gofmt
  14. gofmt:
  15.     gofmt -w $(GOFILES)
  16.  
  17. units.go: units.y
  18.     goyacc -o $@ -p units_ $<
Add Comment
Please, Sign In to add comment