~ubuntu-branches/ubuntu/utopic/irqbalance/utopic-proposed

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2012-09-11 14:20:10 UTC
  • mfrom: (0.2.5) (0.1.16 sid)
  • Revision ID: package-import@ubuntu.com-20120911142010-sl46ls1e7m7s793l
Tags: 1.0.3-1ubuntu1
* Resync with Debian testing and fix compatibility with NUMA 
  based systems (LP: #974450).
  - d/control: Add libnuma-dev to Build-Depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
CFLAGS+=-g -Os -D_FORTIFY_SOURCE=2 -Wall -W `pkg-config --cflags glib-2.0` 
2
 
 
3
 
all: irqbalance
4
 
 
5
 
LIBS=bitmap.o irqbalance.o cputree.o  procinterrupts.o irqlist.o placement.o activate.o network.o powermode.o numa.o classify.o
6
 
 
7
 
irqbalance: .depend $(LIBS)
8
 
        gcc  -g -O2 -D_FORTIFY_SOURCE=2 -Wall  `pkg-config --libs glib-2.0` $(LIBS) -o irqbalance 
9
 
 
10
 
clean:
11
 
        rm -f irqbalance *~ *.o .depend
12
 
 
13
 
# rule for building dependency lists, and writing them to a file
14
 
# named ".depend".
15
 
.depend:
16
 
        rm -f .depend
17
 
        gccmakedep -f- -- $(CFLAGS) -- *.c > .depend