brintos

brintos / linux-shallow public Read only

0
0
Text · 486 B · 6ea1d9f Raw
20 lines · plain
1# SPDX-License-Identifier: GPL-2.02# Makefile for Intel Software Defined Silicon provisioning tool3 4dell-uart-backlight-emulator: dell-uart-backlight-emulator.c5 6BINDIR ?= /usr/bin7 8override CFLAGS += -O2 -Wall9 10%: %.c11	$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)12 13.PHONY : clean14clean :15	@rm -f dell-uart-backlight-emulator16 17install : dell-uart-backlight-emulator18	install -d $(DESTDIR)$(BINDIR)19	install -m 755 -p dell-uart-backlight-emulator $(DESTDIR)$(BINDIR)/dell-uart-backlight-emulator20