summaryrefslogtreecommitdiffstats
path: root/import-layers/meta-openembedded/meta-oe/recipes-benchmark/tiobench/tiobench-0.3.3/tiobench-makefile.patch
blob: f820c7e3379452544266407abf94e3982456cb2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Adapt tiobench to OE
Author: Ludovic Desroches <ludovic.desroches@atmel.com>

Upstream-Status: Inappropriate [not author]

Index: Makefile
===================================================================
--- a/Makefile	2011-05-26 07:48:46.341400974 +0200
+++ b/Makefile	2011-05-30 06:32:38.091401358 +0200
@@ -1,8 +1,9 @@
 # Makefile for tiotest
 
-CC=gcc
+CC?=gcc
 #CFLAGS=-O3 -fomit-frame-pointer -Wall
 CFLAGS=-O2 -Wall
+LDFLAGS?=
 
 #DEFINES=-DUSE_MMAP 
 #-DUSE_MADVISE
@@ -14,16 +15,16 @@
 
 #DEFINES=
 
-LINK=gcc
+LINK?=$(CC)
 EXE=tiotest
 PROJECT=tiobench
 # do it once instead of each time referenced
 VERSION=$(shell egrep "tiotest v[0-9]+.[0-9]+" tiotest.c | cut -d " " -f 7 | sed "s/v//g")
 DISTNAME=$(PROJECT)-$(VERSION)
 INSTALL=install
-PREFIX=/usr/local
+PREFIX?=/usr/local
 BINDIR=$(PREFIX)/bin
-DOCDIR=/usr/local/doc/$(DISTNAME)
+DOCDIR=$(PREFIX)/share/doc/$(DISTNAME)
 
 all: $(EXE)
 
@@ -34,7 +35,7 @@
 	$(CC) -c $(CFLAGS) $(DEFINES) tiotest.c -o tiotest.o
 
 $(EXE): tiotest.o crc32.o
-	$(LINK) -o $(EXE) tiotest.o crc32.o -lpthread
+	$(LINK) -o $(EXE) tiotest.o crc32.o -lpthread $(LDFLAGS)
 	@echo
 	@echo "./tiobench.pl --help for usage options"
 	@echo
OpenPOWER on IntegriCloud