mb/google/brya/var/omnigul: Modify NVMe and UFS Storage support
[coreboot.git] / payloads / libpayload / tests / Makefile
blob8c55053af7b177132400e03b11a37642332dcf10
1 CC=gcc -g -m32
2 INCLUDES=-I. -I../include -I../include/x86
3 TARGETS=cbfs-x86-test
5 cbfs-x86-test: cbfs-x86-test.c ../arch/x86/rom_media.c ../libcbfs/ram_media.c ../libcbfs/cbfs.c
6 $(CC) -o $@ $^ $(INCLUDES)
9 all: $(TARGETS)
11 run: all
12 for i in $(TARGETS); do ./$$i; done