mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-12 06:00:48 +00:00
![Max Horn](/assets/img/avatar_default.png)
* Moved Common::Debuggger to GUI::Debugger (mainly to satisfy linker restrictions) * Change the base Debugger class to *not* be a template class anymore; instead, a thin (template based) wrapper class is used to hook up debugger commands * Removed duplicate Cmd_Exit and Cmd_Help methods in favor of a single version of each in GUI::Debugger * New Cmd_Help doesn't word wrap after 39/78 chars, but rather queries the console to determine when to wrap * Debugger::preEnter and postEnter aren't pure virtual anymore svn-id: r23890
29 lines
396 B
Makefile
29 lines
396 B
Makefile
MODULE := gui
|
|
|
|
MODULE_OBJS := \
|
|
about.o \
|
|
browser.o \
|
|
chooser.o \
|
|
console.o \
|
|
debugger.o \
|
|
dialog.o \
|
|
editable.o \
|
|
EditTextWidget.o \
|
|
eval.o \
|
|
launcher.o \
|
|
ListWidget.o \
|
|
message.o \
|
|
newgui.o \
|
|
options.o \
|
|
PopUpWidget.o \
|
|
ScrollBarWidget.o \
|
|
TabWidget.o \
|
|
widget.o \
|
|
theme.o \
|
|
ThemeClassic.o \
|
|
ThemeNew.o \
|
|
theme-config.o
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|