mirror of
https://github.com/wiiu-env/ftpiiu_plugin.git
synced 2024-11-04 20:15:09 +01:00
24 lines
398 B
Makefile
24 lines
398 B
Makefile
.PHONY: all 3dsx cia clean linux
|
|
|
|
export GITREV := $(shell git rev-parse HEAD 2>/dev/null | cut -c1-8)
|
|
export VERSION := 2.2
|
|
|
|
ifneq ($(strip $(GITREV)),)
|
|
export VERSION := $(VERSION)-$(GITREV)
|
|
endif
|
|
|
|
all: 3dsx
|
|
|
|
3dsx:
|
|
@$(MAKE) -f Makefile.3ds 3dsx
|
|
|
|
cia:
|
|
@$(MAKE) -f Makefile.3ds cia
|
|
|
|
linux:
|
|
@$(MAKE) -f Makefile.linux
|
|
|
|
clean:
|
|
@$(MAKE) -f Makefile.3ds clean
|
|
@$(MAKE) -f Makefile.linux clean
|