mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
14 lines
209 B
Makefile
14 lines
209 B
Makefile
CC = i686-w64-mingw32-gcc
|
|
CFLAGS=-static -c -DNDEBUG -Wall -Wextra -pedantic -Os
|
|
|
|
all: nvram
|
|
|
|
nvram: nvram.o
|
|
$(CC) -s -static nvram.o -o nvram.exe
|
|
|
|
.c:
|
|
$(CC) $(CFLAGS) $< -o $@
|
|
|
|
clean:
|
|
rm -rf *.o nvram.exe
|