Merge 3.12-rc3 into char-misc-next
[deliverable/linux.git] / Documentation / mic / mpssd / Makefile
1 #
2 # Makefile - Intel MIC User Space Tools.
3 # Copyright(c) 2013, Intel Corporation.
4 #
5 ifdef DEBUG
6 CFLAGS += $(USERWARNFLAGS) -I. -g -Wall -DDEBUG=$(DEBUG)
7 else
8 CFLAGS += $(USERWARNFLAGS) -I. -g -Wall
9 endif
10
11 mpssd: mpssd.o sysfs.o
12 $(CC) $(CFLAGS) -o $@ $^ -lpthread
13
14 install:
15 install mpssd /usr/sbin/mpssd
16 install micctrl /usr/sbin/micctrl
17
18 clean:
19 rm -f mpssd *.o
This page took 0.029894 seconds and 5 git commands to generate.