diff options
| author | Felix Arends <edx@rockbox.org> | 2002-06-26 14:05:08 +0000 |
|---|---|---|
| committer | Felix Arends <edx@rockbox.org> | 2002-06-26 14:05:08 +0000 |
| commit | 41455bd76a8e935f8d45957e31374eadde728ddc (patch) | |
| tree | 08dba1f0a1af0b77d0b56f4f7c19719de1a1a5b8 | |
| parent | 26b25488bad2ff970f820681bdd78fc970a4d07d (diff) | |
| download | rockbox-41455bd76a8e935f8d45957e31374eadde728ddc.zip rockbox-41455bd76a8e935f8d45957e31374eadde728ddc.tar.gz rockbox-41455bd76a8e935f8d45957e31374eadde728ddc.tar.bz2 rockbox-41455bd76a8e935f8d45957e31374eadde728ddc.tar.xz | |
resource was not compiled correctly
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1198 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/win32/makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/uisimulator/win32/makefile b/uisimulator/win32/makefile index cbd2298..09bac5b 100644 --- a/uisimulator/win32/makefile +++ b/uisimulator/win32/makefile @@ -34,6 +34,7 @@ KEYPAD = -DHAVE_PLAYER_KEYPAD #KEYPAD = -DHAVE_RECORDER_KEYPAD CC = cl +RC = rc LINK = link DEFINES = -DWIN32 -DHAVE_CONFIG_H -DGETTIMEOFDAY_TWO_ARGS -DSIMULATOR $(KEYPAD) $(DISPLAY) LDFLAGS = /OUT:uisw32.exe /SUBSYSTEM:windows @@ -46,7 +47,7 @@ SRCS = *.c \ $(DRIVERS)/lcd.c \ $(APPDIR)*.c \ $(FIRMWAREDIR)/chartables.c $(FIRMWAREDIR)/id3.c $(FIRMWAREDIR)/settings.c $(FIRMWAREDIR)/backlight.c \ - $(COMMON)/sprintf.c $(COMMON)/strtok.c + $(COMMON)/sprintf.c $(COMMON)/strtok.c !IF ("$(DISPLAY)" == "-DHAVE_LCD_BITMAP") SRCS = $(SRCS) $(RECDIR)*.c @@ -56,7 +57,9 @@ OBJS = *.obj uisw32.res uisw32.exe: $(SRCS:.c=.obj) $(CC) $(CFLAGS) $(SRCS) + $(RC) /r uisw32.rc $(LINK) $(LIBS) $(LDFLAGS) $(OBJS) clean: - $(RM) *.obj
\ No newline at end of file + $(RM) *.obj + $(RM) uisw32.res
\ No newline at end of file |