rockbox/tools/win32.mak
Felix Arends 491f907671 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
2002-09-21 21:15:05 +00:00

20 lines
555 B
Makefile

# __________ __ ___.
# 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