makefile for uisw32

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@266 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Felix Arends 2002-04-27 18:26:13 +00:00
parent 5762dc43d3
commit 53ba9c3911

View file

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