Initial commit

This commit is contained in:
Alexandre 2026-04-27 20:45:54 +02:00
parent cb6da6bdbc
commit 3e3c5dcb3e
3 changed files with 11 additions and 5 deletions

8
.gitignore vendored
View File

@ -111,7 +111,8 @@ dkms.conf
.LSOverride .LSOverride
# Icon must end with two \r # Icon must end with two \r
Icon Icon
# Thumbnails # Thumbnails
._* ._*
@ -161,3 +162,8 @@ $RECYCLE.BIN/
# ---> Build # ---> Build
build/ build/
build-*/ build-*/
# ---> 3DS
*.elf
*.3dsx
*.smdh

View File

@ -33,9 +33,9 @@ include $(DEVKITARM)/3ds_rules
#--------------------------------------------------------------------------------- #---------------------------------------------------------------------------------
TARGET := $(notdir $(CURDIR)) TARGET := $(notdir $(CURDIR))
BUILD := build BUILD := build
SOURCES := source SOURCES := src
DATA := data DATA := data
INCLUDES := include INCLUDES := src/includes
GRAPHICS := gfx GRAPHICS := gfx
GFXBUILD := $(BUILD) GFXBUILD := $(BUILD)
#ROMFS := romfs #ROMFS := romfs

View File

@ -1,5 +1,5 @@
#include <iostream> #include <3ds.h>
int main() { int main( int argc, char* argv[] ) {
return 0; return 0;
} }