mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 20:55:17 -05:00
makefile for uisw32
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@266 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
5762dc43d3
commit
53ba9c3911
1 changed files with 42 additions and 0 deletions
42
uisimulator/win32/makefile
Normal file
42
uisimulator/win32/makefile
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue