summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/win32.mak20
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/win32.mak b/tools/win32.mak
new file mode 100644
index 0000000000..20b0525353
--- /dev/null
+++ b/tools/win32.mak
@@ -0,0 +1,20 @@
+# __________ __ ___.
+# Open \______ \ ____ ____ | | _\_ |__ _______ ___
+# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
+# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
+# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
+# \/ \/ \/ \/ \/
+# $Id$
+#
+CFLAGS =
+
+TARGETS = scramble.exe descramble.exe sh2d.exe convbdf.exe
+
+all: $(TARGETS)
+
+$(OBJDIR)/%.exe: %.c
+ $(CC) $(CFLAGS) -c $< -o $@
+
+clean:
+ del $(TARGETS) *.obj
+