mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
22 lines
391 B
Makefile
22 lines
391 B
Makefile
CC ?= gcc
|
|
CFLAGS=-c -Wall -Wextra -pedantic -O3
|
|
LDFLAGS ?=
|
|
|
|
ifneq ($(OS),Windows_NT)
|
|
UNAME_S := $(shell uname -s)
|
|
ifeq ($(UNAME_S),Darwin)
|
|
LDFLAGS+=-Wl,-framework,CoreFoundation -Wl,-framework,CoreGraphics -Wl,-framework,CoreText
|
|
endif
|
|
endif
|
|
|
|
all: disklabel
|
|
|
|
disklabel: disklabel.o
|
|
$(CC) $(LDFLAGS) disklabel.o -o disklabel
|
|
|
|
.c:
|
|
$(CC) $(CFLAGS) $< -o $@
|
|
|
|
clean:
|
|
rm -rf *.o disklabel
|