accel/qaic: Add AIC200 support
[drm/drm-misc.git] / tools / arch / x86 / dell-uart-backlight-emulator / Makefile
blob6ea1d9fd534bddf73015b07cc365d5a230a2cafc
1 # SPDX-License-Identifier: GPL-2.0
2 # Makefile for Intel Software Defined Silicon provisioning tool
4 dell-uart-backlight-emulator: dell-uart-backlight-emulator.c
6 BINDIR ?= /usr/bin
8 override CFLAGS += -O2 -Wall
10 %: %.c
11 $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
13 .PHONY : clean
14 clean :
15 @rm -f dell-uart-backlight-emulator
17 install : dell-uart-backlight-emulator
18 install -d $(DESTDIR)$(BINDIR)
19 install -m 755 -p dell-uart-backlight-emulator $(DESTDIR)$(BINDIR)/dell-uart-backlight-emulator