mirror of
https://github.com/AntonioND/nitro-engine.git
synced 2025-06-18 08:35:44 -04:00

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.
24 lines
339 B
Makefile
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
|