diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2001-06-03 21:17:35 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2001-06-03 21:17:35 -0400 |
commit | d1349dd61e0c9248ec9be3edaa37a67952e44300 (patch) | |
tree | cc38442efa38ebd0cbb683866bc0ac8caf066a69 /WWW/Library/djgpp/makefile | |
parent | 8c68f693cc82e6650afff52fe478c0ccde4bc015 (diff) | |
download | lynx-snapshots-d1349dd61e0c9248ec9be3edaa37a67952e44300.tar.gz |
snapshot of project "lynx", label v2-8-4dev_21
Diffstat (limited to 'WWW/Library/djgpp/makefile')
-rw-r--r-- | WWW/Library/djgpp/makefile | 36 |
1 files changed, 27 insertions, 9 deletions
diff --git a/WWW/Library/djgpp/makefile b/WWW/Library/djgpp/makefile index 78567d28..893f6cdb 100644 --- a/WWW/Library/djgpp/makefile +++ b/WWW/Library/djgpp/makefile @@ -13,21 +13,39 @@ WWW_MACH = djgpp -DUSE_HASH \ -DLINKEDSTYLES +# comment this line to suppress DIRED support +DIRED_DEFS = -DDIRED_SUPPORT -CFLAGS = -O1 -DUSE_ZLIB -DDOSPATH -DNOUSERS -DDISP_PARTIAL \ --DDIRED_SUPPORT -DSOURCE_CACHE -DUSE_PRETTYSRC \ +CFLAGS= -O2 $(MCFLAGS) $(INTLFLAGS) $(SSLFLAGS) $(SSLINC) + +MCFLAGS = \ + $(DIRED_DEFS) \ $(ENABLE_COLOR_STYLE) \ --DEXP_FILE_UPLOAD \ --DWATT32 \ --I../Implementation \ --I../../../djgpp/watt32/inc -I../../../djgpp/watt32/inc/sys \ --I../../../src \ --I../../../curses \ --I../../.. $(INTLFLAGS) + -DDISP_PARTIAL \ + -DDOSPATH \ + -DEXP_FILE_UPLOAD \ + -DNOUSERS \ + -DSOURCE_CACHE \ + -DUSE_PRETTYSRC \ + -DUSE_ZLIB \ + -DWATT32 \ + -I../Implementation \ + -I../../../src \ + -I../../.. \ + -I/djgpp/pdcur24 \ + -I/djgpp/watt32/inc \ + -I/djgpp/watt32/inc/sys + LFLAGS = CC = gcc + +# Uncomment the following to enable Internationalization. #INTLFLAGS = -DHAVE_GETTEXT -DHAVE_LIBINTL_H +# Uncomment the following to enable SSL. +#SSLFLAGS = -DUSE_SSL +#SSLINC = -I/djgpp/include/openssl + # Directory for installed binary: !BINDIR = /usr/local/bin |