diff options
author | WlodekM <[email protected]> | 2024-06-16 10:35:45 +0300 |
---|---|---|
committer | WlodekM <[email protected]> | 2024-06-16 10:35:45 +0300 |
commit | abef6da56913f1c55528103e60a50451a39628b1 (patch) | |
tree | b3c8092471ecbb73e568cd0d336efa0e7871ee8d /misc/xbox/Makefile |
initial commit
Diffstat (limited to 'misc/xbox/Makefile')
-rw-r--r-- | misc/xbox/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/misc/xbox/Makefile b/misc/xbox/Makefile new file mode 100644 index 0000000..f3a7985 --- /dev/null +++ b/misc/xbox/Makefile @@ -0,0 +1,13 @@ +ifeq ($(strip $(NXDK_DIR)),) +$(error "Please set NXDK_DIR in your environment") +endif + +XBE_TITLE = ClassiCube +GEN_XISO = ClassiCube-xbox.iso +SRCS = $(wildcard src/*.c) $(wildcard third_party/bearssl/src/*.c) +SHADER_OBJS = misc/xbox/vs_coloured.inl misc/xbox/vs_textured.inl misc/xbox/ps_coloured.inl misc/xbox/ps_textured.inl +NXDK_NET = y +NXDK_CFLAGS = -Ithird_party/bearssl/inc -O1 +NXDK_LDFLAGS = -stack:196608 + +include $(NXDK_DIR)/Makefile \ No newline at end of file |