File: platform-dingux.mk

package info (click to toggle)
openmsx 0.8.0-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 15,084 kB
  • ctags: 17,704
  • sloc: cpp: 118,956; xml: 20,823; tcl: 6,222; python: 3,812; asm: 1,154; makefile: 158; sh: 72
file content (22 lines) | stat: -rw-r--r-- 658 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# $Id: platform-dingux.mk 11382 2010-04-04 19:28:12Z mthuurne $
#
# Configuration for Dingux: Linux for Dingoo A320.

# Dingux is a Linux/uClibc system.
include build/platform-linux.mk

# Allow GMenu to identify our binary as an executable.
# Since the file system is FAT this cannot be done with a permission flag.
EXEEXT:=.dge

# Build a minimal set of components.
LINK_MODE:=3RD_STA_MIN

ifeq ($(OPENMSX_TARGET_CPU),mipsel)
# Automatically select the cross compiler from its default location.
ifeq ($(origin CXX),default)
CXX:=/opt/mipsel-linux-uclibc/usr/bin/mipsel-linux-uclibc-g++
endif
# Use MIPS32 instruction set.
COMPILE_FLAGS+=-march=mips32
endif