diff --git a/uisimulator/win32/makefile b/uisimulator/win32/makefile index 09bac5be93..969f3a6e62 100644 --- a/uisimulator/win32/makefile +++ b/uisimulator/win32/makefile @@ -27,11 +27,13 @@ APPDIR = ../../apps/ RECDIR = $(APPDIR)recorder/ RM = del +!IF ("$(TARGET)" == "RECORDER") +DISPLAY = -DHAVE_LCD_BITMAP +KEYPAD = -DHAVE_RECORDER_KEYPAD +!ELSE DISPLAY = -DHAVE_LCD_CHARCELLS -#DISPLAY = -DHAVE_LCD_BITMAP - KEYPAD = -DHAVE_PLAYER_KEYPAD -#KEYPAD = -DHAVE_RECORDER_KEYPAD +!ENDIF CC = cl RC = rc @@ -62,4 +64,5 @@ uisw32.exe: $(SRCS:.c=.obj) clean: $(RM) *.obj - $(RM) uisw32.res \ No newline at end of file + $(RM) uisw32.res + $(RM) uisw32.exe \ No newline at end of file