mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-24 15:12:23 +01:00
byuu says: Basically just a project rename, with s/bsnes/higan and the new icon from lowkee added in. It won't compile on Windows because I forgot to update the resource.rc file, and a path transform command isn't working on Windows. It was really just meant as a starting point, so that v091 WIPs can flow starting from .00 with the new name (it overshadows bsnes v091, so publicly speaking this "shouldn't exist" and will probably be deleted from Google Code when v092 is ready.)
119 lines
2.3 KiB
Makefile
Executable File
119 lines
2.3 KiB
Makefile
Executable File
# Makefile
|
|
# author: byuu
|
|
# license: public domain
|
|
|
|
[A-Z] = A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
|
|
[a-z] = a b c d e f g h i j k l m n o p q r s t u v w x y z
|
|
[0-9] = 0 1 2 3 4 5 6 7 8 9
|
|
[markup] = ` ~ ! @ \# $$ % ^ & * ( ) - _ = + [ { ] } \ | ; : ' " , < . > / ?
|
|
[all] = $([A-Z]) $([a-z]) $([0-9]) $([markup])
|
|
[space] :=
|
|
[space] +=
|
|
|
|
#####
|
|
# platform detection
|
|
#####
|
|
|
|
ifeq ($(platform),)
|
|
uname := $(shell uname -a)
|
|
ifeq ($(uname),)
|
|
platform := win
|
|
delete = del $(subst /,\,$1)
|
|
else ifneq ($(findstring Windows,$(uname)),)
|
|
platform := win
|
|
delete = del $(subst /,\,$1)
|
|
else ifneq ($(findstring CYGWIN,$(uname)),)
|
|
platform := win
|
|
delete = del $(subst /,\,$1)
|
|
else ifneq ($(findstring Darwin,$(uname)),)
|
|
platform := osx
|
|
delete = rm -f $1
|
|
else
|
|
platform := x
|
|
delete = rm -f $1
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(compiler),)
|
|
ifeq ($(platform),win)
|
|
compiler := gcc
|
|
else ifeq ($(platform),osx)
|
|
compiler := gcc-mp-4.7
|
|
else
|
|
compiler := gcc-4.7
|
|
endif
|
|
endif
|
|
|
|
c := $(compiler) -std=gnu99
|
|
cpp := $(subst cc,++,$(compiler)) -std=gnu++0x
|
|
|
|
ifeq ($(prefix),)
|
|
prefix := /usr/local
|
|
endif
|
|
|
|
#####
|
|
# function rwildcard(directory, pattern)
|
|
#####
|
|
rwildcard = \
|
|
$(strip \
|
|
$(filter $(if $2,$2,%), \
|
|
$(foreach f, \
|
|
$(wildcard $1*), \
|
|
$(eval t = $(call rwildcard,$f/)) \
|
|
$(if $t,$t,$f) \
|
|
) \
|
|
) \
|
|
)
|
|
|
|
#####
|
|
# function strtr(source, from, to)
|
|
#####
|
|
strtr = \
|
|
$(eval __temp := $1) \
|
|
$(strip \
|
|
$(foreach c, \
|
|
$(join $(addsuffix :,$2),$3), \
|
|
$(eval __temp := \
|
|
$(subst $(word 1,$(subst :, ,$c)),$(word 2,$(subst :, ,$c)),$(__temp)) \
|
|
) \
|
|
) \
|
|
$(__temp) \
|
|
)
|
|
|
|
#####
|
|
# function strupper(source)
|
|
#####
|
|
strupper = $(call strtr,$1,$([a-z]),$([A-Z]))
|
|
|
|
#####
|
|
# function strlower(source)
|
|
#####
|
|
strlower = $(call strtr,$1,$([A-Z]),$([a-z]))
|
|
|
|
#####
|
|
# function strlen(source)
|
|
#####
|
|
strlen = \
|
|
$(eval __temp := $(subst $([space]),_,$1)) \
|
|
$(words \
|
|
$(strip \
|
|
$(foreach c, \
|
|
$([all]), \
|
|
$(eval __temp := \
|
|
$(subst $c,$c ,$(__temp)) \
|
|
) \
|
|
) \
|
|
$(__temp) \
|
|
) \
|
|
)
|
|
|
|
#####
|
|
# function streq(source)
|
|
#####
|
|
streq = $(if $(filter-out xx,x$(subst $1,,$2)$(subst $2,,$1)x),,1)
|
|
|
|
#####
|
|
# function strne(source)
|
|
#####
|
|
strne = $(if $(filter-out xx,x$(subst $1,,$2)$(subst $2,,$1)x),1,)
|