/examples/Makefile

https://code.google.com/p/gotcl/ · Makefile · 12 lines · 8 code · 4 blank · 0 comment · 0 complexity · f1914de19648b5ddb813dc55c91fa00b MD5 · raw file

  1. include $(GOROOT)/src/Make.inc
  2. ALL=simple repl
  3. all: $(ALL)
  4. clean:
  5. rm -rf *.[68] $(ALL)
  6. %: %.go
  7. $(GC) $*.go
  8. $(LD) -o $@ $*.$O