summaryrefslogtreecommitdiff
path: root/tools/build/tests/ex/Makefile
blob: c50d5782ad5a967472a75f84a9d3a81fee19eecf (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
export srctree := $(abspath ../../../..)
export CC      := gcc
export LD      := ld
export AR      := ar

ex:

include $(srctree)/tools/build/Makefile.include

ex: ex-in.o libex-in.o
	gcc -o $@ $^

ex.%: fixdep FORCE
	make -f $(srctree)/tools/build/Makefile.build dir=. $@

ex-in.o: fixdep FORCE
	make $(build)=ex

libex-in.o: fixdep FORCE
	make $(build)=libex

clean:
	find . -name '*.o' -delete -o -name '\.*.cmd' -delete -o -name '\.*.d' -delete
	rm -f ex ex.i ex.s

.PHONY: FORCE
>Linus Torvalds <torvalds@linux-foundation.org>2017-02-04 10:44:15 -0800 commit412e6d3fec247b2bc83106514b0fb3b17e2eb7fe (patch) treecbd241740a61d7ff60742d6f94d1564e796fb405 /drivers/usb/phy/of.c parent252bf9f4c43fd58f96587a97866cb7cc980e7544 (diff)parent433e19cf33d34bb6751c874a9c00980552fe508c (diff)
Merge tag 'char-misc-4.10-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc
Pull char/misc driver fixes from Greg KH: "Here are two bugfixes that resolve some reported issues. One in the firmware loader, that should fix the much-reported problem of crashes with it. The other is a hyperv fix for a reported regression. Both have been in linux-next for a week or so with no reported issues" * tag 'char-misc-4.10-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc: Drivers: hv: vmbus: finally fix hv_need_to_signal_on_read() firmware: fix NULL pointer dereference in __fw_load_abort()
Diffstat (limited to 'drivers/usb/phy/of.c')