summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3a1816130..49c541748 100644
--- a/Makefile
+++ b/Makefile
@@ -50,6 +50,12 @@ TARGET := gtk
endif
endif
+ifneq ($(TARGET),riscos)
+ifneq ($(TARGET),gtk)
+$(error Unknown TARGET "$(TARGET)", should either be "riscos" or "gtk")
+endif
+endif
+
Q=@
VQ=@
PERL=perl
@@ -83,8 +89,9 @@ EXEEXT :=
PKG_CONFIG :=
else
# Cross-build for RO
-GCCSDK_INSTALL_ENV := /home/riscos/env
-CC := /home/riscos/cross/bin/gcc
+GCCSDK_INSTALL_ENV ?= /home/riscos/env
+GCCSDK_INSTALL_CROSSBIN ?= /home/riscos/cross/bin
+CC := $(GCCSDK_INSTALL_CROSSBIN)/gcc
EXEEXT := ,ff8
PKG_CONFIG := $(GCCSDK_INSTALL_ENV)/ro-pkg-config
endif