Native RISC OS building: create sym file in the build directory instead of current directory.

svn path=/trunk/netsurf/; revision=4085
This commit is contained in:
John Tytgat 2008-04-07 19:13:11 +00:00
parent 59641def82
commit f3d968bfc0
1 changed files with 3 additions and 3 deletions

View File

@ -96,8 +96,10 @@ else
PKG_CONFIG := pkg-config
endif
OBJROOT := build-$(HOST)-$(TARGET)$(SUBTARGET)
ifeq ($(HOST),riscos)
LDFLAGS := -Xlinker -symbols=sym -lxml2 -lz -lm -lcurl -lssl -lcrypto -lmng -ljpeg
LDFLAGS := -Xlinker -symbols=$(OBJROOT)/sym -lxml2 -lz -lm -lcurl -lssl -lcrypto -lmng -ljpeg
else
LDFLAGS := $(shell $(PKG_CONFIG) --libs libxml-2.0 libcurl openssl)
LDFLAGS += -lz -lm -lmng -ljpeg
@ -154,8 +156,6 @@ endif
endif
endif
OBJROOT := build-$(HOST)-$(TARGET)$(SUBTARGET)
$(OBJROOT)/created:
$(VQ)echo " MKDIR: $(OBJROOT)"
$(Q)$(MKDIR) $(OBJROOT)