File: Makefile

package info (click to toggle)
kexec-tools 20080324-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,060 kB
  • ctags: 4,678
  • sloc: ansic: 17,393; sh: 3,049; asm: 2,125; cpp: 1,743; makefile: 621
file content (11 lines) | stat: -rw-r--r-- 263 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
BIN_TO_HEX:= bin/bin-to-hex

$(BIN_TO_HEX): $(srcdir)/util/bin-to-hex.c
	@$(MKDIR) -p $(@D)
	$(LINK.o) -o $@ $^

$(BIN_TO_HEX): CC=$(BUILD_CC)
$(BIN_TO_HEX): CFLAGS=$(BUILD_CFLAGS)

dist += util/Makefile util/bin-to-hex.c
clean += util/bin-to-hex.o $(BIN_TO_HEX)