From: Russ Cox Date: Thu, 30 Jul 2009 19:54:38 +0000 (-0700) Subject: use full path on command line when compiling, X-Git-Tag: weekly.2009-11-06~1015 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6ccebe082fa311e06216707717fbd3887052eea6;p=gostls13.git use full path on command line when compiling, so that gdb shows full path in stack traces. R=r DELTA=4 (4 added, 0 deleted, 0 changed) OCL=32522 CL=32528 --- diff --git a/src/Make.conf b/src/Make.conf index 417e49b136..9c927bae29 100644 --- a/src/Make.conf +++ b/src/Make.conf @@ -11,3 +11,7 @@ YFLAGS=-d ifndef GOBIN GOBIN=$(HOME)/bin endif +PWD=$(shell pwd) + +%.$O: %.c + $(CC) $(CFLAGS) -c $(PWD)/$*.c