2016-06-08 22:23:01 -05:00
|
|
|
.PHONY: all 3dsx cia clean linux
|
2014-11-23 16:39:00 -06:00
|
|
|
|
2016-06-15 02:44:49 -05:00
|
|
|
export GITREV := $(shell git rev-parse HEAD 2>/dev/null | cut -c1-8)
|
2016-01-22 14:42:38 -06:00
|
|
|
export VERSION := 2.2
|
|
|
|
|
2016-06-15 02:44:49 -05:00
|
|
|
ifneq ($(strip $(GITREV)),)
|
|
|
|
export VERSION := $(VERSION)-$(GITREV)
|
|
|
|
endif
|
|
|
|
|
2016-06-08 22:23:01 -05:00
|
|
|
all: 3dsx
|
2014-11-23 16:39:00 -06:00
|
|
|
|
2016-06-08 22:23:01 -05:00
|
|
|
3dsx:
|
|
|
|
@$(MAKE) -f Makefile.3ds 3dsx
|
|
|
|
|
|
|
|
cia:
|
|
|
|
@$(MAKE) -f Makefile.3ds cia
|
|
|
|
|
2014-11-25 00:13:47 -06:00
|
|
|
linux:
|
|
|
|
@$(MAKE) -f Makefile.linux
|
2014-11-23 16:39:00 -06:00
|
|
|
|
|
|
|
clean:
|
2014-11-25 00:13:47 -06:00
|
|
|
@$(MAKE) -f Makefile.3ds clean
|
|
|
|
@$(MAKE) -f Makefile.linux clean
|