mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
13 lines
375 B
Makefile
13 lines
375 B
Makefile
CFLAGS := $(CFLAGS) -D_FORTIFY_SOURCE=2 -Wall -W $(shell pkg-config --cflags glib-2.0)
|
|
LDFLAGS := $(shell pkg-config --libs glib-2.0)
|
|
|
|
OBJS = bitmap.o irqbalance.o cputree.o procinterrupts.o irqlist.o \
|
|
placement.o activate.o network.o powermode.o numa.o classify.o
|
|
|
|
all: irqbalance
|
|
|
|
irqbalance: $(OBJS)
|
|
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
|
|
|
clean:
|
|
rm -f irqbalance *~ *.o
|