SegaMouseRAW/Makefile
2025-09-22 18:58:42 +04:00

12 lines
231 B
Makefile

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)