summaryrefslogtreecommitdiff
path: root/Makefile-riscos
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-03-24 16:11:52 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-03-24 16:11:52 +0000
commit0d98990eace7a5054dfbb927e16e67eadaf63653 (patch)
treea9ac8a5050d255fa729b7986a0f50b63b711bfd9 /Makefile-riscos
parentb051ab9d7aa7c8b9689ca4464ae73a21d916c209 (diff)
downloadlibhubbub-0d98990eace7a5054dfbb927e16e67eadaf63653.tar.gz
libhubbub-0d98990eace7a5054dfbb927e16e67eadaf63653.tar.bz2
Purge redundant makefiles
svn path=/trunk/hubbub/; revision=6845
Diffstat (limited to 'Makefile-riscos')
-rw-r--r--Makefile-riscos54
1 files changed, 0 insertions, 54 deletions
diff --git a/Makefile-riscos b/Makefile-riscos
deleted file mode 100644
index 69223c3..0000000
--- a/Makefile-riscos
+++ /dev/null
@@ -1,54 +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
-
-CC := $(wildcard $(GCCSDK_INSTALL_CROSSBIN)/*gcc)
-AR := $(wildcard $(GCCSDK_INSTALL_CROSSBIN)/*ar)
-LD := $(CC)
-
-CP := cp
-RM := rm
-MKDIR := mkdir
-MV := mv
-ECHO := echo
-MAKE := make
-PERL := perl
-PKGCONFIG := $(GCCSDK_INSTALL_ENV)/ro-pkg-config
-INSTALL := install
-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 :=
-
-ifneq (,$(findstring arm-unknown-riscos-gcc,$(CC)))
- EXEEXT := ,e1f
-else
- EXEEXT := ,ff8
-endif
-
-# Default installation prefix
-PREFIX ?= $(GCCSDK_INSTALL_ENV)
-
-TARGET := riscos
-include build/Makefile.common