File: Make.rules

package info (click to toggle)
fwupdate 12-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 588 kB
  • sloc: ansic: 4,329; makefile: 358; sh: 49
file content (15 lines) | stat: -rw-r--r-- 321 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

define get-config
$(shell git config --local --get "fwupdate.$(1)")
endef

%.abixml : %.so
	$(ABIDW) --headers-dir $(TOP)/linux/include/ --out-file $@ $^
	@sed -i -s 's,$(TOPDIR)/,,g' $@

%.abicheck : %.so
	$(ABIDIFF) \
		--suppr abignore \
		--headers-dir2 $(TOP)/linux/include/ \
		$(patsubst %.so,%.abixml,$<) \
		$<