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)
downloadrockbox-491f90767177b8c1dbcd33e3a0c75ddb77400d73.tar.gz
rockbox-491f90767177b8c1dbcd33e3a0c75ddb77400d73.zip
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 @@
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