mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-23 15:32:25 +00:00
83e3178e9b
The FindXxx.cmake files are used by Goa's cmake support. genodelabs/genode#5087
27 lines
497 B
Makefile
27 lines
497 B
Makefile
MIRROR_FROM_REP_DIR := lib/import/import-curl.mk \
|
|
lib/symbols/curl \
|
|
src/lib/curl
|
|
|
|
content: $(MIRROR_FROM_REP_DIR)
|
|
|
|
$(MIRROR_FROM_REP_DIR):
|
|
$(mirror_from_rep_dir)
|
|
|
|
PORT_DIR := $(call port_dir,$(REP_DIR)/ports/curl)
|
|
|
|
content: include
|
|
|
|
include:
|
|
mkdir -p $@
|
|
cp -r $(PORT_DIR)/include/curl $@/
|
|
|
|
content: src/lib/curl
|
|
|
|
content: LICENSE FindCURL.cmake
|
|
|
|
LICENSE:
|
|
cp $(PORT_DIR)/src/lib/curl/COPYING $@
|
|
|
|
FindCURL.cmake:
|
|
echo 'set(CURL_FOUND True)' > $@
|