30 lines
672 B
Makefile
Executable File
30 lines
672 B
Makefile
Executable File
include $(MAKEDIR)/Makefile.base
|
|
|
|
INCPATH := -I./include/curl -I./include -I./lib -I../../openssl/openssl/include
|
|
LIBFILE := libcurl.a
|
|
_FLAGS := $(_FLAGS) -DHAVE_CONFIG_H -DBUILDING_LIBCURL -DPIC -I../../nghttp2/nghttp2/lib/includes
|
|
COPYTO := ../../sdk/lib
|
|
|
|
PROJECTS :=
|
|
|
|
ifeq (Darwin,$(SYS_NAME))
|
|
PROJECTS := lib lib/vtls lib/vauth lib/vquic
|
|
include $(MAKEDIR)/Makefile.lib
|
|
endif
|
|
|
|
ifeq (Linux,$(SYS_NAME))
|
|
PROJECTS := lib lib/vtls lib/vauth lib/vquic
|
|
include $(MAKEDIR)/Makefile.lib
|
|
endif
|
|
|
|
ifeq (Android,$(SYS_NAME))
|
|
PROJECTS := lib lib/vtls lib/vauth lib/vquic
|
|
include $(MAKEDIR)/Makefile.lib
|
|
endif
|
|
|
|
ifeq (iOS,$(SYS_NAME))
|
|
include $(MAKEDIR)/Makefile.none
|
|
endif
|
|
|
|
|