Skip to content
Snippets Groups Projects
Commit 2ae8c75e authored by rswindell's avatar rswindell
Browse files

Path macros (e.g. XPDEV and SBBS_SRC) do not end in slash.

parent 8a8c5102
No related branches found
No related tags found
No related merge requests found
......@@ -5,23 +5,23 @@
# Available options:
# NEED_JAVASCRIPT = Set flags for use with JS
SBBS_SRC ?= $(XPDEV)../sbbs3/
SBBS_SRC ?= $(XPDEV)/../sbbs3
CFLAGS += -I$(SBBS_SRC)
JS_CFLAGS += -DJAVASCRIPT
ifdef JSINCLUDE
JS_CFLAGS += -I$(JSINCLUDE)
else
JS_CFLAGS += -I$(XPDEV)../../include/mozilla/js
JS_CFLAGS += -I$(XPDEV)/../../include/mozilla/js
endif
ifndef JSLIBDIR
JSLIBDIR := $(XPDEV)../../lib/mozilla/js/$(machine).$(BUILD)
JSLIBDIR := $(XPDEV)/../../lib/mozilla/js/$(machine).$(BUILD)
endif
ifndef JSLIB
JSLIB := js
endif
ifndef NSPRDIR
NSPRDIR := $(XPDEV)../../lib/mozilla/nspr/$(machine).$(BUILD)
NSPRDIR := $(XPDEV)/../../lib/mozilla/nspr/$(machine).$(BUILD)
endif
JS_LDFLAGS += -L$(JSLIBDIR) -l$(JSLIB)
#The following is needed for nspr support on Linux
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment