From 53ba9c391139987b7492b534f16a7ec6055f4671 Mon Sep 17 00:00:00 2001 From: Felix Arends Date: Sat, 27 Apr 2002 18:26:13 +0000 Subject: makefile for uisw32 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@266 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/win32/makefile | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 uisimulator/win32/makefile (limited to 'uisimulator/win32') diff --git a/uisimulator/win32/makefile b/uisimulator/win32/makefile new file mode 100644 index 0000000000..43ce1e9fd9 --- /dev/null +++ b/uisimulator/win32/makefile @@ -0,0 +1,42 @@ +############################################################################ +# __________ __ ___. +# 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. +# +############################################################################ + +TARGET = rockboxui + +FIRMWAREDIR = ../../firmware +DRIVERS = $(FIRMWAREDIR)/drivers +COMMON = $(FIRMWAREDIR)/common + +CC = cl +DEFINES = -DHAVE_CONFIG_H -DGETTIMEOFDAY_TWO_ARGS -DSIMULATOR -DARCHOS_RECORDER -D_WIN32 -DWIN32 +LDFLAGS = /ouisw32.exe /link -subsystem:windows +INCLUDES = -I$(FIRMWAREDIR) -I$(DRIVERS) -I$(COMMON) +LIBS = gdi32.lib user32.lib + + +CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) /MD /Fo"Release/" /Fd"Release/vc70.pdb" + +#SRCS = $(wildcard *.c) + +SRCS = lcd-win32.c tetris.c uisw32.c $(DRIVERS)/lcd.c button.c $(FIRMWAREDIR)/chartables.c kernel.c Release/uisw32.res + +OBJS = $(SRCS:.c=.o) + +all: + $(CC) $(CFLAGS) $(SRCS) $(LIBS) $(LDFLAGS) \ No newline at end of file -- cgit v1.2.3