12 lines
246 B
Makefile
12 lines
246 B
Makefile
.PHONY: build
|
|
.PHONY: frameworks
|
|
|
|
CWD := $(abspath $(patsubst %/,%,$(dir $(abspath $(lastword $(MAKEFILE_LIST))))))
|
|
|
|
all: build frameworks
|
|
|
|
build:
|
|
OPENSSL_VERSION="1.1.1s" $(CWD)/scripts/build.sh
|
|
|
|
frameworks:
|
|
$(CWD)/scripts/create-frameworks.sh
|