5c2b5fcf2f
Modify util Makefiles to allow installing to a build root specified by DESTDIR. Allows using the `install` target for packaging. Change-Id: I3a31ea0fde9922731e1621dcc8f94b2c1326c93c Signed-off-by: Tim Crawford <tcrawford@system76.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60540 Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <patrick@coreboot.org> Reviewed-by: Felix Singer <felixsinger@posteo.net>
26 lines
471 B
Makefile
26 lines
471 B
Makefile
## SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
CC = gcc
|
|
CFLAGS = -O2 -Wall -Wextra -Werror
|
|
PROGRAM = pmh7tool
|
|
INSTALL = /usr/bin/env install
|
|
PREFIX = /usr/local
|
|
|
|
all: $(PROGRAM)
|
|
|
|
$(PROGRAM): pmh7tool.o
|
|
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
|
|
|
install: $(PROGRAM)
|
|
$(INSTALL) -d $(DESTDIR)$(PREFIX)/sbin
|
|
$(INSTALL) $(PROGRAM) $(DESTDIR)$(PREFIX)/sbin
|
|
|
|
clean:
|
|
rm -f *.o $(PROGRAM)
|
|
|
|
distclean: clean
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c $^ -I. -o $@
|
|
|
|
.PHONY: all install clean distclean
|