mirror of
https://github.com/curl/curl.git
synced 2025-02-17 14:59:45 +08:00
build: fix for MSDOS/djgpp
- Add a VPATH-statement for the vtls/*.c files. - Due to 'vtls/*.c', remove that subdir part from $(OBJECTS).
This commit is contained in:
parent
5fecdc26f7
commit
c238d4da1b
@ -26,12 +26,14 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
DEPEND_PREREQ = curl_config.h
|
DEPEND_PREREQ = curl_config.h
|
||||||
|
VPATH = vtls
|
||||||
TOPDIR = ..
|
TOPDIR = ..
|
||||||
|
|
||||||
include ../packages/DOS/common.dj
|
include ../packages/DOS/common.dj
|
||||||
include Makefile.inc
|
include Makefile.inc
|
||||||
|
|
||||||
OBJECTS := $(patsubst %.c,$(OBJ_DIR)/%.o,$(strip $(CSOURCES)))
|
SOURCES = $(sort $(CSOURCES))
|
||||||
|
OBJECTS = $(addprefix $(OBJ_DIR)/, $(notdir $(SOURCES:.c=.o)))
|
||||||
|
|
||||||
CURL_LIB = libcurl.a
|
CURL_LIB = libcurl.a
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user