summaryrefslogtreecommitdiff
path: root/Makefile-ronative
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-03-24 17:48:46 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-03-24 17:48:46 +0000
commit2c56a79c6b9a65bf3a624b35604fb8a11de5a7ef (patch)
tree945ec246f870f2eb27aa73b87fae62c50a0433b1 /Makefile-ronative
parentac294568caf6b7c4572a62809be531a117108e8b (diff)
downloadlibparserutils-2c56a79c6b9a65bf3a624b35604fb8a11de5a7ef.tar.gz
libparserutils-2c56a79c6b9a65bf3a624b35604fb8a11de5a7ef.tar.bz2
Port to new buildsystem
svn path=/trunk/libparserutils/; revision=6854
Diffstat (limited to 'Makefile-ronative')
-rw-r--r--Makefile-ronative57
1 files changed, 0 insertions, 57 deletions
diff --git a/Makefile-ronative b/Makefile-ronative
deleted file mode 100644
index cf38a3e..0000000
--- a/Makefile-ronative
+++ /dev/null
@@ -1,57 +0,0 @@
-# Toolchain definitions for building on RISC OS
-GCCSDK_INSTALL_ENV ?= <NSLibs$$Dir>
-
-CC := gcc
-AR := ar
-LD := gcc
-
-CP := cp
-RM := rm
-MKDIR := mkdir
-MV := mv
-ECHO := echo
-MAKE := make
-PERL := perl
-PKGCONFIG := echo
-INSTALL := echo
-SED := sed
-TOUCH := touch
-LCOV := echo
-GENHTML := echo
-DOXYGEN := doxygen
-
-# Toolchain flags
-WARNFLAGS := -Wall -Wextra -Wundef -Wpointer-arith -Wcast-align \
- -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \
- -Wmissing-declarations -Wnested-externs -Werror -pedantic
-CFLAGS = -std=c99 -D_BSD_SOURCE -I$(TOP)/include/ $(WARNFLAGS) \
- -mpoke-function-name
-RELEASECFLAGS = $(CFLAGS) -DNDEBUG -O2
-DEBUGCFLAGS = $(CFLAGS) -O0 -g
-ARFLAGS := -cru
-LDFLAGS = -L$(TOP)/
-
-CPFLAGS :=
-RMFLAGS := -f
-MKDIRFLAGS := -p
-MVFLAGS :=
-ECHOFLAGS :=
-MAKEFLAGS :=
-PKGCONFIGFLAGS :=
-TOUCHFLAGS :=
-
-EXEEXT :=
-
-# Default installation prefix
-PREFIX ?= $(GCCSDK_INSTALL_ENV)
-
-# This is nasty, but needed because $(CURDIR) will
-# contain colons, and thus confuse make mightily
-$(shell SetMacro Alias$$LPUpwd Set %0 <FileSwitch$$CurrentFilingSystem>:|<FileSwitch$$<FileSwitch$$CurrentFilingSystem>$$CSD>|mUnset Alias$$LPUpwd)
-$(shell LPUpwd LibParserUtils$$Dir)
-TOP := <LibParserUtils$$Dir>
-
-# Tell everyone that we're building on RISC OS, so they can work around things.
-HOST := riscos
-
-include build/Makefile.common