mirror of
https://github.com/libretro/RetroArch
synced 2025-02-22 03:40:43 +00:00
(CTR-3DS) remove hardcoded paths in the Makefile.
remove trailing tab.
This commit is contained in:
parent
b3beb2788c
commit
c57d00d98d
13
Makefile.ctr
13
Makefile.ctr
@ -5,10 +5,17 @@ OBJS += gfx/drivers/ctr_blit.o griffin/griffin.o
|
|||||||
DEBUG = 0
|
DEBUG = 0
|
||||||
|
|
||||||
|
|
||||||
CTRULIB = /home/lethalis/3ds/ctrulib/libctru
|
ifeq ($(strip $(DEVKITARM)),)
|
||||||
AEMSTRO = /home/lethalis/3ds/aemstro
|
$(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
|
INCDIRS := -I$(CTRULIB)/include
|
||||||
LIBDIRS := -L. -L$(CTRULIB)/lib
|
LIBDIRS := -L. -L$(CTRULIB)/lib
|
||||||
|
Loading…
x
Reference in New Issue
Block a user