]> sjero.net Git - wget/blobdiff - windows/Makefile.watcom
[svn] Moved malloc-related code to xmalloc.c. Defined new macros xnew, xnew0,
[wget] / windows / Makefile.watcom
index b04d998542b61ca783813cf1c0eb5a02f92d8e29..44d0b5baefe64c4e28b7c985bc375311d9509f40 100644 (file)
 ## Compiler, linker, and lib stuff
 ## Makefile for use with watcom win95/winnt executable.
+#
+# Copy this file to the ..\src directory (maybe rename to Makefile).
+#
 
-CC=wcc386
+CC=wcc386 /zq
 LINK=wlink
 
-#disabled for faster compiler
-LFLAGS=sys nt op st=32767 op version=15013 op map
-CFLAGS=/zp4 /d1 /w4 /fpd /5s /fp5 /bm /mf /os /bt=nt /DWINDOWS /DHAVE_CONFIG_H /I=f:\lang\watcom\h;f:\lang\watcom\h\nt;f:\code\wgetb13\src
-
-## variables
-OBJS = FILE ALLOCA.obj,cmpt.obj,connect.obj,fnmatch.obj,ftp.obj,ftp-basic.obj, &
-      ftp-ls.obj,ftp-opie.obj,getopt.obj,headers.obj,host.obj,html.obj, &
-      http.obj,init.obj,log.obj,main.obj,md5.obj,netrc.obj,rbuf.obj, &
-      recur.obj,retr.obj,url.obj,utils.obj,version.obj,mswindows.obj
-LINKOBJS = ALLOCA.obj cmpt.obj connect.obj fnmatch.obj ftp.obj ftp-basic.obj &
-      ftp-ls.obj ftp-opie.obj getopt.obj headers.obj host.obj html.obj &
-      http.obj init.obj log.obj main.obj md5.obj netrc.obj rbuf.obj &
-      recur.obj retr.obj url.obj utils.obj version.obj mswindows.obj
-LIBFILES =
+#
+# Note: this will wipe anything in the env.var PATH !
+#
+.BEFORE
+       @SET INCLUDE=$(%WATCOM)\h;$(%WATCOM)\h\nt;.
+
+LFLAGS=op q sys nt op st=32767 op vers=1.7 op map op de 'GNU wget 1.7dev' de dw op symf
+#
+# op q              : quiet !
+# sys nt            : producing an NT app
+# op st(ack)=32768  : stack size
+# op vers(ion)=1.7  : "Image version" in the EXE header ( major.minor )
+# op map            : produce a map file
+# op de             : textual description, placed in the executable
+# de dw             : debug info on Dwarf format
+# op symf           : place debug info in a separate wget.sym
+#
+
+CFLAGS=/zp4 /w4 /fpd /5s /fp5 /bm /mf /bt=nt /DWINDOWS /DHAVE_CONFIG_H
+#                    ^^^^^^^^ wget will run on NT. We can safely assume a Pentium :-)
+# /zp4= pack structure members with this alignment
+# /d1 = line number debug info
+# /w4 = warning level
+# /fpd= Pentium floatingpoint bug workaround
+# /5s = Pentium stack-based calling
+# /fp5= Pentium floating point
+# /bm = build multi-threaded
+# /mf = flat memory model
+# /bt = "build target" (nt)
+
+#
+# Choose one of the following three:
+# /od /d2  for no optimization, full debug info
+# /os /d2  to optimize for size, full debug info (or /d1 for line number debug info)
+# /othexan for "heavy-duty" optimizations, no debug info
+#
+#CFLAGS+= /od /d2
+CFLAGS+= /os /d2
+#CFLAGS+= /othexan
+#       ^^-- mind the gap !!
+
+#CFLAGS+= /DDEBUG_MALLOC
+#       ^^-- mind the gap !!
+
+OBJS = cmpt.obj convert.obj connect.obj cookies.obj ftp.obj ftp-basic.obj  &
+      ftp-ls.obj ftp-opie.obj getopt.obj hash.obj headers.obj host.obj html-parse.obj html-url.obj  &
+      http.obj init.obj log.obj main.obj gen-md5.obj gnu-md5.obj netrc.obj progress.obj rbuf.obj  &
+      recur.obj res.obj retr.obj safe-ctype.obj url.obj utils.obj version.obj mswindows.obj
+
+LIBFILES = 
+#
+# Add extra libs like this :
+#LIBFILES = LIBF lz32.lib,gdi32.lib
 
 BINNAME=wget.exe
 
-$(BINNAME): $(LINKOBJS)
-        $(LINK) $(LFLAGS) NAME $(BINNAME) $(OBJS) $(LIBPATH) $(LIBFILES)
+all : config.h $(BINNAME) .SYMBOLIC
 
-alloca.obj : alloca.c config.h
-        $(CC) $(CFLAGS) alloca.c
+#
+# We use config.h.ms
+#
+config.h : ..\windows\config.h.ms
+       copy $[@ $^@
 
-cmpt.obj : cmpt.c cmpt.h wget.h config.h
-        $(CC) $(CFLAGS) cmpt.c
+#
+# Note: this will pass all the OBJ files to wlink,
+# resulting in a very long command line (410 chars, last I counted)
+# This might fail on Win9x (works with NT's cmd.exe)
+#
+$(BINNAME): $(OBJS) Makefile
+       $(LINK) $(LFLAGS) NAME $(BINNAME) FILE { $(OBJS) } $(LIBPATH) $(LIBFILES)
 
-connect.obj : connect.c wget.h connect.h host.h config.h
-        $(CC) $(CFLAGS) connect.c
 
-fnmatch.obj : fnmatch.c wget.h fnmatch.h config.h
-        $(CC) $(CFLAGS) fnmatch.c
+#
+# Explicit dependencies not needed because Watcom C stores
+# dependency information in the object file. Wmake can read this information
+# if prompted by .AUTODEPEND
+#
 
-ftp.obj : ftp.c wget.h utils.h url.h rbuf.h retr.h ftp.h html.h connect.h host.h fnmatch.h netrc.h config.h
-        $(CC) $(CFLAGS) ftp.c
+.c.obj: .AUTODEPEND
+       $(CC) $(CFLAGS) $[@
 
-ftp-basic.obj : ftp-basic.c wget.h utils.h rbuf.h connect.h host.h config.h
-        $(CC) $(CFLAGS) ftp-basic.c
-
-ftp-ls.obj : ftp-ls.c wget.h utils.h ftp.h config.h
-        $(CC) $(CFLAGS) ftp-ls.c
-
-ftp-opie.obj : ftp-opie.c wget.h md5.h config.h
-        $(CC) $(CFLAGS) ftp-opie.c
-
-getopt.obj : getopt.c wget.h getopt.h config.h
-        $(CC) $(CFLAGS) getopt.c
-
-headers.obj : headers.c headers.h wget.h rbuf.h connect.h config.h
-        $(CC) $(CFLAGS) headers.c
-
-host.obj : host.c wget.h host.h utils.h url.h config.h
-        $(CC) $(CFLAGS) host.c
-
-html.obj : html.c wget.h url.h utils.h ftp.h html.h config.h
-        $(CC) $(CFLAGS) html.c
-
-http.obj : http.c wget.h utils.h url.h host.h rbuf.h retr.h headers.h connect.h fnmatch.h netrc.h config.h
-        $(CC) $(CFLAGS) http.c
-
-init.obj : init.c wget.h utils.h init.h host.h recur.h netrc.h config.h
-        $(CC) $(CFLAGS) init.c
-
-log.obj : log.c wget.h utils.h config.h
-        $(CC) $(CFLAGS) log.c
-
-main.obj : main.c wget.h utils.h getopt.h init.h retr.h host.h recur.h config.h mswindows.h
-        $(CC) $(CFLAGS) main.c
-
-md5.obj : md5.c wget.h md5.h config.h
-        $(CC) $(CFLAGS) md5.c
-
-mswindows.obj : mswindows.c wget.h url.h config.h
-        $(CC) $(CFLAGS) mswindows.c
-
-netrc.obj : netrc.c wget.h utils.h netrc.h init.h config.h
-        $(CC) $(CFLAGS) netrc.c
-
-rbuf.obj : rbuf.c wget.h rbuf.h connect.h config.h
-        $(CC) $(CFLAGS) rbuf.c
-
-recur.obj : recur.c wget.h url.h recur.h utils.h retr.h ftp.h fnmatch.h host.h config.h
-        $(CC) $(CFLAGS) recur.c
-
-retr.obj : retr.c wget.h utils.h retr.h url.h recur.h ftp.h host.h connect.h config.h
-        $(CC) $(CFLAGS) retr.c
-
-url.obj : url.c wget.h url.h host.h html.h utils.h config.h
-        $(CC) $(CFLAGS) url.c
-
-utils.obj : utils.c wget.h fnmatch.h utils.h config.h
-        $(CC) $(CFLAGS) utils.c
-
-version.obj : version.c config.h
-        $(CC) $(CFLAGS) version.c
+.c.i: .AUTODEPEND
+       $(CC) $(CFLAGS) -fo=$@ /Pc $[@