nitro-engine/Makefile
Antonio Niño Díaz 5a10679dfb build: docs: Remove outdated devkitARM makefiles
Nitro Engine doesn't work with the current libraries of devkitARM. It's
better to remove the makefiles and to stop pretending that devkitARM is
supported. Updating the makefiles wouldn't be enough, though, it's likely
that the library will require code changes, as well as the examples.
2025-03-24 21:03:01 +00:00

24 lines
339 B
Makefile

# SPDX-License-Identifier: CC0-1.0
#
# SPDX-FileContributor: Antonio Niño Díaz, 2024
# Tools
# -----
MAKE := make
# Targets
# -------
.PHONY: all install clean
all:
$(MAKE) -f Makefile.blocksds
$(MAKE) -f Makefile.blocksds NE_DEBUG=1
install: all
$(MAKE) -f Makefile.blocksds install
clean:
$(MAKE) -f Makefile.blocksds clean