Skip to content

Instantly share code, notes, and snippets.

@alphazero
Created November 12, 2009 22:40
Show Gist options
  • Save alphazero/233382 to your computer and use it in GitHub Desktop.
Save alphazero/233382 to your computer and use it in GitHub Desktop.
.SUFFIXES: .go .6
OBJS=mc_constants.6 byte_manipulation.6 mc_storage.6 mc_conn_handler.6 gocache.6
PACKAGES=.
gocache: $(OBJS)
6l -o gocache $(OBJS)
clean:
rm -f $(OBJS) gocache
.go.6:
6g -I $(PACKAGES) $<
/////////////////////
import . "mc_constants";
import (
"mc_conn_handler";
"mc_storage";
"log";
....
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment