mb/google/poppy/variants/nocturne: Add DMIC properties to ACPI DSD
[coreboot.git] / util / archive / Makefile
blob7008cc20209d77e858b342f22995de180571dc37
1 PROGRAM = archive
2 HOSTCC ?= gcc
4 SRCS = $(PROGRAM).c
6 all: $(PROGRAM)
8 $(PROGRAM): $(SRCS)
9 $(HOSTCC) -o $@ $^
11 clean:
12 rm -f $(PROGRAM) *.o
14 .PHONY: all clean