MAME/3rdparty/genie/build/gmake.darwin/Makefile
2026-05-23 01:35:04 +10:00

38 lines
761 B
Makefile

# GNU Make solution makefile autogenerated by GENie
# https://github.com/bkaradzic/GENie
# Type "make help" for usage help
ifndef config
config=release
endif
export config
PROJECTS := genie
.PHONY: all clean help $(PROJECTS)
all: $(PROJECTS)
genie:
@echo "==== Building genie ($(config)) ===="
@${MAKE} --no-print-directory -C . -f genie.make
clean:
@${MAKE} --no-print-directory -C . -f genie.make clean
help:
@echo "Usage: make [config=name] [target]"
@echo ""
@echo "CONFIGURATIONS:"
@echo " release"
@echo " debug"
@echo " releaseuniv32"
@echo " debuguniv32"
@echo ""
@echo "TARGETS:"
@echo " all (default)"
@echo " clean"
@echo " genie"
@echo ""
@echo "For more information, see https://github.com/bkaradzic/genie"