From 491f90767177b8c1dbcd33e3a0c75ddb77400d73 Mon Sep 17 00:00:00 2001 From: Felix Arends Date: Sat, 21 Sep 2002 21:15:05 +0000 Subject: 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 --- tools/win32.mak | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tools/win32.mak 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 + -- cgit v1.2.3