summaryrefslogtreecommitdiff
path: root/tools/win32.mak
diff options
context:
space:
mode:
authorFelix Arends <edx@rockbox.org>2002-09-21 21:15:05 +0000
committerFelix Arends <edx@rockbox.org>2002-09-21 21:15:05 +0000
commit491f90767177b8c1dbcd33e3a0c75ddb77400d73 (patch)
treeaeb00478ba76b1ba0498918a5543fc4bf1d69f09 /tools/win32.mak
parent3531717c191c6fe7a0dcb3938ef8a67f82d86785 (diff)
a win32 version of the tools makefile (tested for visual c++ 7.0 nmake)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2366 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/win32.mak')
-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
+