Skip to content
Snippets Groups Projects
Commit 56aa725a authored by deuce's avatar deuce
Browse files

XPDEV and SBBS_SRC may not have trailing backspashes when specified on command-line.

parent 877e7764
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ XSDK = ../sdk
XPDEV ?= ../../src/xpdev/
vpath %.c $(XSDK)
NEED_THREADS := 1
include $(XPDEV)Common.gmake
include $(XPDEV)/Common.gmake
CFLAGS += -I$(XSDK)
ifeq ($(os),sunos)
......
......@@ -17,10 +17,12 @@ XSDK = ../sdk
ifndef XPDEV
XPDEV = ../../src/xpdev/
endif
SBBS_SRC := $(XPDEV)../sbbs3/
ifndef SBBS_SRC
SBBS_SRC := $(XPDEV)../sbbs3/
endif
NEED_THREADS := 1
include $(XPDEV)Common.gmake
include $(SBBS_SRC)Common.gmake
include $(XPDEV)/Common.gmake
include $(SBBS_SRC)/Common.gmake
ifeq ($(os),sunos)
LDFLAGS += -lsocket -lnsl -lrt
......
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