summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/win32.mak20
1 files changed, 0 insertions, 20 deletions
diff --git a/tools/win32.mak b/tools/win32.mak
deleted file mode 100644
index 20b0525353..0000000000
--- a/tools/win32.mak
+++ /dev/null
@@ -1,20 +0,0 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id$
8#
9CFLAGS =
10
11TARGETS = scramble.exe descramble.exe sh2d.exe convbdf.exe
12
13all: $(TARGETS)
14
15$(OBJDIR)/%.exe: %.c
16 $(CC) $(CFLAGS) -c $< -o $@
17
18clean:
19 del $(TARGETS) *.obj
20