Skip to content
Snippets Groups Projects
Commit 718039e5 authored by deuce's avatar deuce
Browse files

Add support for library/include arguments mentioned in 64bit.txt

parent 5ad9d4fd
No related branches found
No related tags found
No related merge requests found
...@@ -19,6 +19,11 @@ ...@@ -19,6 +19,11 @@
# NOCVS = do not do CVS update # NOCVS = do not do CVS update
# JSLIB = Library name of JavaScript library. # JSLIB = Library name of JavaScript library.
# JSLIBDIR = Full path to JavaScript library # JSLIBDIR = Full path to JavaScript library
# CRYPTLIBINCLUDE = Path to cryptlib header file(s)
# CRYPTLIBDIR = Path to libcl.*
# NSPRDIR = Path to nspr4 library
# NSPRINCLUDE = Path to NSPR header files
# SDL_CONFIG = Path to sdl-config program
# CVSTAG = CVS tag to pull # CVSTAG = CVS tag to pull
# NO_X = Don't include build conio library (ciolib) for X # NO_X = Don't include build conio library (ciolib) for X
# NO_GLADE = Don't build Glade-based sysop tools # NO_GLADE = Don't build Glade-based sysop tools
...@@ -91,6 +96,26 @@ ifdef JSLIBDIR ...@@ -91,6 +96,26 @@ ifdef JSLIBDIR
MKFLAGS += JSLIBDIR=$(JSLIBDIR) MKFLAGS += JSLIBDIR=$(JSLIBDIR)
endif endif
ifdef CRYPTLIBINCLUDE
MKFLAGS += CRYPTLIBINCLUDE=$(CRYPTLIBINCLUDE)
endif
ifdef CRYPTLIBDIR
MKFLAGS += CRYPTLIBDIR=$(CRYPTLIBDIR)
endif
ifdef NSPRDIR
MKFLAGS += NSPRDIR=$(NSPRDIR)
endif
ifdef NSPRINCLUDE
MKFLAGS += NSPRINCLUDE=$(NSPRINCLUDE)
endif
ifdef SDL_CONFIG
MKFLAGS += SDL_CONFIG=$(SDL_CONFIG)
endif
ifdef NO_X ifdef NO_X
MKFLAGS += NO_X=$(NO_X) MKFLAGS += NO_X=$(NO_X)
endif endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment