mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-27 10:10:57 +00:00
35 lines
693 B
Makefile
35 lines
693 B
Makefile
# GNU Make solution makefile autogenerated by Premake
|
|
# Type "make help" for usage help
|
|
|
|
ifndef config
|
|
config=debug
|
|
endif
|
|
export config
|
|
|
|
PROJECTS := go2
|
|
|
|
.PHONY: all clean help $(PROJECTS)
|
|
|
|
all: $(PROJECTS)
|
|
|
|
go2:
|
|
@echo "==== Building go2 ($(config)) ===="
|
|
@${MAKE} --no-print-directory -C build/gmake -f Makefile
|
|
|
|
clean:
|
|
@${MAKE} --no-print-directory -C build/gmake -f Makefile clean
|
|
|
|
help:
|
|
@echo "Usage: make [config=name] [target]"
|
|
@echo ""
|
|
@echo "CONFIGURATIONS:"
|
|
@echo " debug"
|
|
@echo " release"
|
|
@echo ""
|
|
@echo "TARGETS:"
|
|
@echo " all (default)"
|
|
@echo " clean"
|
|
@echo " go2"
|
|
@echo ""
|
|
@echo "For more information, see http://industriousone.com/premake/quick-start"
|