mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
14 lines
181 B
Makefile
14 lines
181 B
Makefile
CC ?= gcc
|
|
CFLAGS=-c -Wall -Wextra -pedantic -O3
|
|
|
|
all: readlabel
|
|
|
|
readlabel: readlabel.o
|
|
$(CC) readlabel.o -o readlabel
|
|
|
|
.c:
|
|
$(CC) $(CFLAGS) $< -o $@
|
|
|
|
clean:
|
|
rm -rf *.o readlabel
|