comparison Makefile.ds @ 2684:a4f143d187dd gsoc2008_nds

Improved devkitPrO message in Makefile.ds and set better environment variable defaults
author Sam Lantinga <slouken@libsdl.org>
date Mon, 11 Aug 2008 04:39:24 +0000
parents 4135aa9c5645
children 0b395a60deff
comparison
equal deleted inserted replaced
2683:e858ac8868b6 2684:a4f143d187dd
1 1
2 #LibSDL 1.3 porting and enhancements by Darren Alton (lifning) 2 #LibSDL 1.3 porting and enhancements by Darren Alton (lifning)
3 #LibSDL 1.2.9 DS porting by Troy Davis(GPF) 3 #LibSDL 1.2.9 DS porting by Troy Davis(GPF)
4 4
5 ifeq ($(strip $(DEVKITPRO)),)
6 $(error "Please set DEVKITPRO in your environment (available from http://www.devkitpro.org). export DEVKITPRO=<path to>devkitPro")
7 endif
5 ifeq ($(strip $(DEVKITARM)),) 8 ifeq ($(strip $(DEVKITARM)),)
6 $(error "Please set DEVKITARM in your environment. export DEVKITARM=<path to>devkitARM) 9 DEVKITARM = $(DEVKITPRO)/devkitARM
7 endif 10 endif
11 PATH := $(PATH):$(DEVKITARM)/bin
8 12
9 CC = arm-eabi-gcc 13 CC = arm-eabi-gcc
10 AR = arm-eabi-ar 14 AR = arm-eabi-ar
11 RANLIB = arm-eabi-ranlib 15 RANLIB = arm-eabi-ranlib
12 16