diff options
author | kris <kris@FreeBSD.org> | 2003-10-19 16:28:57 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2003-10-19 16:28:57 +0800 |
commit | 7c385e1b796a533c7f66235d6a658324e25a36c8 (patch) | |
tree | 4c29405765e6bb2573996537883e82fbae3888ef /benchmarks/netpipe | |
parent | 97ded1dd1251411a5c7fdaf5f4d7a14f903beb00 (diff) | |
download | freebsd-ports-gnome-7c385e1b796a533c7f66235d6a658324e25a36c8.tar.gz freebsd-ports-gnome-7c385e1b796a533c7f66235d6a658324e25a36c8.tar.zst freebsd-ports-gnome-7c385e1b796a533c7f66235d6a658324e25a36c8.zip |
Respect CC and CFLAGS
Diffstat (limited to 'benchmarks/netpipe')
-rw-r--r-- | benchmarks/netpipe/files/patch-makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/benchmarks/netpipe/files/patch-makefile b/benchmarks/netpipe/files/patch-makefile new file mode 100644 index 000000000000..8c65dfb35255 --- /dev/null +++ b/benchmarks/netpipe/files/patch-makefile @@ -0,0 +1,13 @@ +--- makefile.orig Sun Oct 19 01:20:44 2003 ++++ makefile Sun Oct 19 01:20:53 2003 +@@ -20,8 +20,8 @@ + # + ######################################################################## + +-CC = cc +-CFLAGS = -O ++CC ?= cc ++CFLAGS ?= -O -pipe + SRC = ./src + + # For MPI, mpicc will set up the proper include and library paths |