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:
parent
3531717c19
commit
491f907671
1 changed files with 20 additions and 0 deletions
20
tools/win32.mak
Normal file
20
tools/win32.mak
Normal 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
|
||||
|
Loading…
Reference in a new issue