1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:48:14 +00:00
serenity/Libraries/LibGUI/Makefile
Andreas Kling f1c6193d6d LibGUI: Move GTextDocument out of GTextEditor
The idea here is to decouple the document from the editor widget so you
could have multiple editors being views onto the same document.

This doesn't work yet, since the document and editor are coupled in
various ways still (including a per-line back-pointer to the editor.)
2019-10-27 16:44:16 +01:00

76 lines
1.3 KiB
Makefile

include ../../Makefile.common
OBJS = \
GPainter.o \
GButton.o \
GCheckBox.o \
GEventLoop.o \
GLabel.o \
GTextBox.o \
GScrollBar.o \
GStatusBar.o \
GWidget.o \
GLayout.o \
GBoxLayout.o \
GMenuBar.o \
GMenu.o \
GMenuItem.o \
GApplication.o \
GAction.o \
GActionGroup.o \
GFontDatabase.o \
GToolBar.o \
GTableView.o \
GModel.o \
GVariant.o \
GShortcut.o \
GTextEditor.o \
GTextDocument.o \
GClipboard.o \
GSortingProxyModel.o \
GStackWidget.o \
GScrollableWidget.o \
GMessageBox.o \
GInputBox.o \
GDialog.o \
GDesktop.o \
GProgressBar.o \
GAbstractView.o \
GItemView.o \
GIcon.o \
GFrame.o \
GTreeView.o \
GFileSystemModel.o \
GFilePicker.o \
GDirectoryModel.o \
GSplitter.o \
GSpinBox.o \
GGroupBox.o \
GSlider.o \
GResizeCorner.o \
GTabWidget.o \
GRadioButton.o \
GAbstractButton.o \
GListView.o \
GComboBox.o \
GJsonArrayModel.o \
GAboutDialog.o \
GModelSelection.o \
GLazyWidget.o \
GWindow.o
LIBRARY = libgui.a
DEFINES += -DUSERLAND
all: $(LIBRARY)
$(LIBRARY): $(OBJS)
@echo "LIB $@"; $(AR) rcs $@ $(OBJS)
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<
-include $(OBJS:%.o=%.d)
clean:
@echo "CLEAN"; rm -f $(LIBRARY) $(OBJS) *.d