summaryrefslogtreecommitdiff
path: root/Makefile-ronative
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile-ronative')
-rw-r--r--Makefile-ronative59
1 files changed, 0 insertions, 59 deletions
diff --git a/Makefile-ronative b/Makefile-ronative
deleted file mode 100644
index ba8cd08..0000000
--- a/Makefile-ronative
+++ /dev/null
@@ -1,59 +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
-# As good a way of doing nothing as we get, really (FX 1 == set user flag, X ignores errors)
-PKGCONFIG := X FX 1
-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 -I$(GCCSDK_INSTALL_ENV)/include
-RELEASECFLAGS = $(CFLAGS) -DNDEBUG -O2
-DEBUGCFLAGS = $(CFLAGS) -O0 -g
-ARFLAGS := -cru
-LDFLAGS = -L$(GCCSDK_INSTALL_ENV)/lib -lparserutils -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$$Hubbubpwd Set %0 <FileSwitch$$CurrentFilingSystem>:|<FileSwitch$$<FileSwitch$$CurrentFilingSystem>$$CSD>|mUnset Alias$$Hubbubpwd)
-$(shell Hubbubpwd Hubbub$$Dir)
-TOP := <Hubbub$$Dir>
-
-# Tell everyone that we're building on RISC OS, so they can work around things.
-HOST := riscos
-
-TARGET := ronative
-include build/Makefile.common