From 680434f313201dd04ffbc4bf2735759d28bcef4d Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Wed, 3 Feb 2010 23:07:11 +0000 Subject: Changed the Watcom makefiles to make them easier to keep in sync with Makefile.inc since that can't be included directly. --- src/Makefile.Watcom | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'src/Makefile.Watcom') diff --git a/src/Makefile.Watcom b/src/Makefile.Watcom index 7d38c393a..fdb34fe5b 100644 --- a/src/Makefile.Watcom +++ b/src/Makefile.Watcom @@ -12,10 +12,15 @@ CFLAGS = -3r -mf -d3 -hc -zff -zgf -zq -zm -s -fr=con -w2 -fpi -oilrtfm & OBJ_DIR = WC_Win32.obj -OBJS = $(OBJ_DIR)\getpass.obj $(OBJ_DIR)\homedir.obj $(OBJ_DIR)\hugehelp.obj & - $(OBJ_DIR)\main.obj $(OBJ_DIR)\urlglob.obj $(OBJ_DIR)\writeenv.obj & - $(OBJ_DIR)\writeout.obj $(OBJ_DIR)\curlutil.obj $(OBJ_DIR)\rawstr.obj & - $(OBJ_DIR)\os-specific.obj +# Unfortunately, we can't include Makefile.inc here because wmake doesn't +# use backslash as the line continuation character by default +CURL_SOURCES = main.c hugehelp.c urlglob.c writeout.c writeenv.c & + getpass.c homedir.c curlutil.c os-specific.c + +CURLX_SOURCES = rawstr.c + +OBJS = $(CURL_SOURCES:.c=.obj) $(CURLX_SOURCES:.c=.obj) +OBJS = $OBJ_DIR\$(OBJS: = $OBJ_DIR\) RESOURCE = $(OBJ_DIR)\curl.res -- cgit v1.2.3