summaryrefslogtreecommitdiffstats
path: root/uisimulator
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-08-02 12:16:27 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-08-02 12:16:27 +0000
commit7c928dc0b3f1d022c724b266ce22ed471dd42951 (patch)
tree55ad83f0f3f20f16ab272ba972d2eb4c4da9184e /uisimulator
parentac9ebdebc52bedf00ec25fc9c80123ebc2acf8f9 (diff)
downloadrockbox-7c928dc0b3f1d022c724b266ce22ed471dd42951.tar.gz
rockbox-7c928dc0b3f1d022c724b266ce22ed471dd42951.zip
This file is history, the VC++ Makfile is now Makefile.vc6
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1519 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r--uisimulator/win32/makefile67
1 files changed, 0 insertions, 67 deletions
diff --git a/uisimulator/win32/makefile b/uisimulator/win32/makefile
deleted file mode 100644
index 68c5c26f5b..0000000000
--- a/uisimulator/win32/makefile
+++ /dev/null
@@ -1,67 +0,0 @@
-############################################################################
-# __________ __ ___.
-# Open \______ \ ____ ____ | | _\_ |__ _______ ___
-# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
-# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
-# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
-# \/ \/ \/ \/ \/
-# $Id$
-#
-# Copyright (C) 2002 by Felix Arends
-#
-# All files in this archive are subject to the GNU General Public License.
-# See the file COPYING in the source tree root for full license agreement.
-#
-# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
-# KIND, either express or implied.
-#
-############################################################################
-
-FIRMWAREDIR = ../../firmware
-DRIVERS = $(FIRMWAREDIR)/drivers
-COMMON = $(FIRMWAREDIR)/common
-APPSCOMMON = ../common
-SIMDIR = ../win32/
-APPDIR = ../../apps/
-RECDIR = $(APPDIR)recorder/
-RM = del
-
-!IF ("$(TARGET)" == "RECORDER")
-DISPLAY = -DHAVE_LCD_BITMAP
-KEYPAD = -DHAVE_RECORDER_KEYPAD
-!ELSE
-DISPLAY = -DHAVE_LCD_CHARCELLS
-KEYPAD = -DHAVE_PLAYER_KEYPAD
-!ENDIF
-
-CC = cl
-RC = rc
-LINK = link
-DEFINES = -DWIN32 -DHAVE_CONFIG_H -DGETTIMEOFDAY_TWO_ARGS -DSIMULATOR $(KEYPAD) $(DISPLAY) -DAPPSVERSION=\"WIN32SIM\"
-LDFLAGS = /OUT:uisw32.exe /SUBSYSTEM:windows /NOLOGO /MACHINE:IX86 kernel32.lib user32.lib gdi32.lib
-INCLUDES = -I$(FIRMWAREDIR) -I$(DRIVERS) -I$(COMMON) -I$(SIMDIR) -I$(APPDIR) -I$(RECDIR)
-#LIBS = /DEFAULTLIB:gdi32.lib /DEFAULTLIB:user32.lib
-
-CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) /MD /Fd"Release/vc70.pdb" /c
-
-SRCS = *.c \
- $(DRIVERS)/lcd.c $(DRIVERS)/power.c \
- $(APPDIR)*.c \
- $(FIRMWAREDIR)/chartables.c $(FIRMWAREDIR)/id3.c $(FIRMWAREDIR)/usb.c $(FIRMWAREDIR)/mpeg.c \
- $(COMMON)/sprintf.c $(COMMON)/strtok.c
-
-!IF ("$(DISPLAY)" == "-DHAVE_LCD_BITMAP")
-SRCS = $(SRCS) $(RECDIR)*.c
-!ENDIF
-
-OBJS = *.obj uisw32.res
-
-uisw32.exe: $(SRCS:.c=.obj)
- $(CC) $(CFLAGS) $(SRCS)
- $(RC) /r uisw32.rc
- $(LINK) $(LIBS) $(LDFLAGS) $(OBJS)
-
-clean:
- $(RM) *.obj
- $(RM) uisw32.res
- $(RM) uisw32.exe