mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2026-02-01 15:59:39 +00:00
10 lines
203 B
Makefile
10 lines
203 B
Makefile
CC ?= gcc
|
|
CFLAGS=-Wall -Wextra -pedantic -O3 -I/usr/local/opt/openssl/include -I/opt/local/include
|
|
LDFLAGS=-L/usr/local/opt/openssl/lib -L/opt/local/lib
|
|
LDLIBS=-lcrypto
|
|
|
|
all: RsaTool
|
|
|
|
clean:
|
|
rm RsaTool
|