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
This commit is contained in:
Felix Arends 2002-09-21 21:15:05 +00:00
parent 3531717c19
commit 491f907671

20
tools/win32.mak Normal file
View file

@ -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