diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1996-11-30 10:18:30 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1996-11-30 10:18:30 -0500 |
commit | 6bd78b38830217fa268e678d9637116ec516bf0e (patch) | |
tree | ff28371a110a8035413ef3ded834a5e76ebb7fd0 /Makefile | |
parent | e087f6d44e87f489fcb3056e86319ebba4218156 (diff) | |
download | lynx-snapshots-6bd78b38830217fa268e678d9637116ec516bf0e.tar.gz |
snapshot of project "lynx", label v2_6_961130
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 30 |
1 files changed, 27 insertions, 3 deletions
diff --git a/Makefile b/Makefile index 90575145..d220eb13 100644 --- a/Makefile +++ b/Makefile @@ -234,6 +234,8 @@ all: @echo "decstation -- for DEC Ultrix (same as ultrix)" @echo "ultrix-slang -- for DEC Ultrix and color slang package" @echo "decstation-slang -- for DEC Ultrix and color slang (same as ultrix-slang)" + @echo "umaxv -- for Encore's UMAXV (SVR3.x) " + @echo "umaxv-slang -- for Encore's UMAXV and color slang package" @echo "unixware -- for Novell's Unixware" @echo "univell -- for Novell's Unixware" @echo "unixware-slang -- for Unixware and color slang package" @@ -259,10 +261,10 @@ DIR_DEFS = $(DIRED_SUPPORT) $(DIRED_ARCHIVE) $(DIRED_TAR) $(DIRED_ZIP) $(DIRED_G #SITE_LIBS= # Your libraries here (remove the "#") # Set SITE_LYDEFS to one or more of the defines for the WWW Library: -SITE_LYDEFS = $(DIR_LYDEFS) # Your defines here (remove the "#") +SITE_LYDEFS = $(DIR_LYDEFS) # Your defines here # Set SITE_DEFS to one or more of the defines for lynx below: -SITE_DEFS = $(DIR_DEFS) # Your defines here (remove the "#") +SITE_DEFS = $(DIR_DEFS) # Your defines here # if you are compiling on a previously unsupported system, modify # this generic entry!! @@ -288,6 +290,8 @@ SITE_DEFS = $(DIR_DEFS) # Your defines here (remove the "#") # -DSHORTENED_RBIND For a SOCKSified lynx with the short version of Rbind. # -DNO_UNISTD_H if you don't have <unistd.h> # -DNOPORT if you must use PASV instead of PORT for FTP +# -DNO_TTYTYPE if your system lacks a ttytype variable +# -DNSL_FORK For fork-based name server lookups that can be 'z'apped. # # if you are linking to freeWAIS-0.202 or older, you should define this # in MCFLAGS (SITE_DEFS) @@ -419,7 +423,7 @@ netbsd-ncurses: cd WWW/Library/netbsd; $(MAKE) LYFLAGS="$(SITE_LYDEFS)" cd src; $(MAKE) all CC="cc" MCFLAGS="-O -DFANCY_CURSES -DNCURSES -DUNIX \ -DNO_KEYPAD -DNO_CUSERID -I../$(WWWINC) $(SITE_DEFS) \ - -I/usr/include/ncurses" + -I/usr/include/ncurses" \ LIBS="-lncurses -lcompat -ltermcap \ $(WAISLIB) $(SOCKSLIB) $(SITE_LIBS)" \ WWWLIB="../WWW/Library/netbsd/libwww.a" @@ -542,6 +546,26 @@ ptx2: $(WAISLIB) $(SOCKSLIB) $(SITE_LIBS)" \ WWWLIB="../WWW/Library/ptx/libwww.a" +# Contributed by Thanh Ma (tma@encore.com). +umaxv: + cd WWW/Library/umaxv-m88k; $(MAKE) LYFLAGS="$(SITE_LYDEFS)" + cd src; $(MAKE) all CC="cc" MCFLAGS="-O -DFANCY_CURSES -DUNIX \ + -D_SYSV3 -DHAVE_TERMIOS -DUSE_DIRENT -DNO_UTMP \ + -I../$(WWWINC) $(SITE_DEFS)" \ + LIBS="-lcurses \ + $(WAISLIB) $(SOCKSLIB) $(SITE_LIBS)" \ + WWWLIB="../WWW/Library/umaxv-m88k/libwww.a" + +# Contributed by Thanh Ma (tma@encore.com). +umaxv-slang: + cd WWW/Library/umaxv-m88k; $(MAKE) LYFLAGS="$(SITE_LYDEFS)" + cd src; $(MAKE) all CC="cc" MCFLAGS="-O -DUSE_SLANG -DUNIX \ + -D_SYSV3 -DHAVE_TERMIOS -DUSE_DIRENT -DNO_UTMP \ + -I../$(WWWINC) $(SITE_DEFS)" \ + LIBS="$(WAISLIB) $(SOCKSLIB) $(SITE_LIBS)" \ + WWWLIB="../WWW/Library/umaxv-m88k/libwww.a" \ + SLANGLIB="$(SLANGLIB) -lslang -lm" SLANGINC="$(SLANGINC)" + unixware: cd WWW/Library/svr4; $(MAKE) LYFLAGS="-DNO_BCOPY -DUNIXWARE \ $(SITE_LYDEFS)" |