mirror of
https://github.com/golang/go
synced 2024-11-25 06:57:58 -07:00
2eb9171dfb
QUOTED_GOBIN. Re-take of 181077; fixes copy-pasta that broke build. Fixes #468 R=rsc CC=golang-dev https://golang.org/cl/183125
23 lines
546 B
Plaintext
23 lines
546 B
Plaintext
# Copyright 2009 The Go Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
CFLAGS=-ggdb -I"$(GOROOT)"/include -O2 -fno-inline
|
|
O=o
|
|
YFLAGS=-d
|
|
# GNU Make syntax:
|
|
nullstring :=
|
|
space := $(nullstring) # a space at the end
|
|
ifndef GOBIN
|
|
QUOTED_HOME=$(subst $(space),\ ,$(HOME))
|
|
GOBIN=$(QUOTED_HOME)/bin
|
|
endif
|
|
QUOTED_GOBIN=$(subst $(space),\ ,$(GOBIN))
|
|
|
|
CC=$(QUOTED_GOBIN)/quietgcc
|
|
LD=$(QUOTED_GOBIN)/quietgcc
|
|
PWD=$(shell pwd)
|
|
|
|
%.$O: %.c
|
|
$(CC) $(CFLAGS) -c "$(PWD)"/$*.c
|