11 lines
139 B
Makefile
11 lines
139 B
Makefile
|
LPGCC = ../libpayload/install/libpayload/bin/lpgcc
|
||
|
|
||
|
all: nvramcui.elf
|
||
|
|
||
|
%.elf:
|
||
|
$(LPGCC) -o $*.elf $*.c
|
||
|
|
||
|
.PHONY:
|
||
|
clean:
|
||
|
rm -f nvramcui.elf
|