From 2b9a31984c47cc0abbc8b496214555f6234bfe96 Mon Sep 17 00:00:00 2001 From: jim teeuwen Date: Thu, 9 Feb 2012 17:35:10 +0100 Subject: [PATCH] No more Makefiles. Use go command to build and install. --- Makefile | 15 --------------- README | 2 -- 2 files changed, 17 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 2b23974..0000000 --- a/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -# This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication -# license. Its contents can be found at: -# http://creativecommons.org/publicdomain/zero/1.0 - -include $(GOROOT)/src/Make.inc - -TARG = bindata -GOFILES = main.go gowriter.go bindata.go - -all: - $(GC) -o $(TARG).6 $(GOFILES) - $(LD) -s -o $(TARG) $(TARG).6 - -clean: - rm -rf *.o *.a *.[568vq] [568vq].out *.cgo1.go *.cgo2.c _cgo_defun.c _cgo_gotypes.go _cgo_export.* *.so *.exe $(TARG) diff --git a/README b/README index 4d8f945..9575895 100644 --- a/README +++ b/README @@ -19,8 +19,6 @@ generated go file. USAGE ================================================================================ - $ goinstall github.com/jteeuwen/go-bindata - The simplest invocation is to pass it only the input file name. The output file and code settings are inferred from this automatically.