(CTR-3DS) remove hardcoded paths in the Makefile.

remove trailing tab.
This commit is contained in:
aliaspider 2015-04-01 23:27:55 +01:00
parent b3beb2788c
commit c57d00d98d
2 changed files with 11 additions and 4 deletions

View File

@ -5,10 +5,17 @@ OBJS += gfx/drivers/ctr_blit.o griffin/griffin.o
DEBUG = 0
CTRULIB = /home/lethalis/3ds/ctrulib/libctru
AEMSTRO = /home/lethalis/3ds/aemstro
ifeq ($(strip $(DEVKITARM)),)
$(error "Please set DEVKITARM in your environment. export DEVKITARM=<path to>devkitARM")
endif
export PATH := $(DEVKITARM)/bin:$(PATH)
ifeq ($(strip $(CTRULIB)),)
$(error "Please set CTRULIB in your environment. export CTRULIB=<path to>ctrulib")
endif
ifeq ($(strip $(AEMSTRO)),)
$(error "Please set AEMSTRO in your environment. export AEMSTRO=<path to>aemstro")
endif
INCDIRS := -I$(CTRULIB)/include
LIBDIRS := -L. -L$(CTRULIB)/lib

View File

@ -36,7 +36,7 @@ enum
VIDEO_WII,
VIDEO_XENON360,
VIDEO_XDK_D3D,
VIDEO_PSP1,
VIDEO_PSP1,
VIDEO_VITA,
VIDEO_CTR,
VIDEO_D3D9,