initial commit

This commit is contained in:
2025-09-22 18:58:42 +04:00
commit 34ae22b6a5
8 changed files with 481 additions and 0 deletions

11
Makefile Normal file
View File

@@ -0,0 +1,11 @@
GDK ?= /opt/SGDK
SRC = src
OUT = out
all:
$(MAKE) -f $(GDK)/makefile_wine.gen GDK=$(GDK) WINE=wine \
SRC=$(SRC) OUT=$(OUT)
clean:
$(MAKE) -f $(GDK)/makefile_wine.gen clean GDK=$(GDK) WINE=wine \
SRC=$(SRC) OUT=$(OUT)