]> git.pld-linux.org Git - packages/irqbalance.git/blame - irqbalance-opt.patch
- from fc
[packages/irqbalance.git] / irqbalance-opt.patch
CommitLineData
085cb9f2
AM
1diff -urN irqbalance-0.55.org/Makefile irqbalance-0.55/Makefile
2--- irqbalance-0.55.org/Makefile 2006-12-05 14:15:23.000000000 +0100
3+++ irqbalance-0.55/Makefile 2006-12-13 17:55:44.632291750 +0100
4@@ -1,11 +1,14 @@
5-CFLAGS+=-g -Os -D_FORTIFY_SOURCE=2 -Wall -W `pkg-config --cflags glib-2.0`
6+
7+OPT=-g -Os
8+
9+CFLAGS = $(OPT) -D_FORTIFY_SOURCE=2 -Wall -W `pkg-config --cflags glib-2.0`
99228e03 10
085cb9f2 11 all: irqbalance
99228e03 12
085cb9f2
AM
13 LIBS=bitmap.o irqbalance.o cputree.o procinterrupts.o irqlist.o placement.o activate.o network.o powermode.o numa.o classify.o
14
15 irqbalance: .depend $(LIBS)
16- gcc -g -O2 -D_FORTIFY_SOURCE=2 -Wall `pkg-config --libs glib-2.0` $(LIBS) -o irqbalance
17+ $(CC) $(CFLAGS) $(LDFLAGS) -D_FORTIFY_SOURCE=2 -Wall $(LIBS) `pkg-config --libs glib-2.0` -o irqbalance
18
19 clean:
20 rm -f irqbalance *~ *.o .depend
This page took 0.08257 seconds and 4 git commands to generate.