summaryrefslogtreecommitdiff
path: root/Makefile-riscos
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-03-25 20:35:48 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-03-25 20:35:48 +0000
commited348a5b04e223ac7ee1d4e1f4d582135d2eece8 (patch)
tree6faf37fe516e3210ba949b1161edb606a52b52db /Makefile-riscos
parent530217222237d73a85b37fdd7da506b6c0f02959 (diff)
downloadlibdom-ed348a5b04e223ac7ee1d4e1f4d582135d2eece8.tar.gz
libdom-ed348a5b04e223ac7ee1d4e1f4d582135d2eece8.tar.bz2
First cut at a port to the new buildsystem.
DOMTS stuff currently disabled. svn path=/trunk/dom/; revision=6883
Diffstat (limited to 'Makefile-riscos')
-rw-r--r--Makefile-riscos40
1 files changed, 0 insertions, 40 deletions
diff --git a/Makefile-riscos b/Makefile-riscos
deleted file mode 100644
index 43c0be3..0000000
--- a/Makefile-riscos
+++ /dev/null
@@ -1,40 +0,0 @@
-# Toolchain definitions for building for RISC OS using the GCCSDK cross-compiler
-GCCSDK_INSTALL_CROSSBIN ?= /home/riscos/cross/bin
-GCCSDK_INSTALL_ENV ?= /home/riscos/env
-
-export CC = $(GCCSDK_INSTALL_CROSSBIN)/gcc
-export AR = $(GCCSDK_INSTALL_CROSSBIN)/ar
-export LD = $(GCCSDK_INSTALL_CROSSBIN)/gcc
-
-export CP = cp
-export RM = rm
-export MKDIR = mkdir
-export MV = mv
-export ECHO = echo
-export MAKE = make
-export PERL = perl
-export PKGCONFIG = $(GCCSDK_INSTALL_ENV)/ro-pkg-config
-export XSLT = xsltproc
-
-# Toolchain flags
-WARNFLAGS = -Wall -Wextra -Wundef -Wpointer-arith -Wcast-align \
- -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \
- -Wmissing-declarations -Wnested-externs -Werror -pedantic
-export CFLAGS = -std=c99 -D_BSD_SOURCE -I$(TOP)/include/ $(WARNFLAGS) \
- -mpoke-function-name
-export ARFLAGS = -cru
-export LDFLAGS = -L$(TOP)/
-
-export CPFLAGS =
-export RMFLAGS =
-export MKDIRFLAGS = -p
-export MVFLAGS =
-export ECHOFLAGS =
-export MAKEFLAGS =
-export PKGCONFIGFLAGS =
-export XSLTFLAGS =
-
-export EXEEXT = ,ff8
-
-
-include build/Makefile.common