c4c631ecb9
* NEW: Remove the gb.image.info component. * NEW: Start removing the gb.image component. [DEVELOPMENT ENVIRONMENT] * BUG: Code editor and text editor now arrange their contents correctly when the toolbar size changes. * BUG: The picture of a form action is the Icon property, not the Picture property. [INTERPRETER] * BUG: The _compare special method now is not called anymore if one of the compared object references is null. [GB.GTK] * NEW: Control.Drag() and Drag() now return the drop destination. [GB.FORM.MDI] * NEW: The toolbar icon size can be changed. * BUG: Actions that exist on different forms are correctly loaded. * NEW: The cursor keys can be used now in the shortcut configuration dialog to move the gridview current row. Consequently, you cannot use them as shortcuts. [GB.NET] * BUG: Serial port devices are now watched for reading, not for writing. So the callback will not be called permanently. [GB.QT] * NEW: The Arrange event is now raised just before a container is arranged, not after. Moreover, it cannot called recursively anymore. [GB.QT4] * NEW: Control.Drag() and Drag() now return the drop destination. * NEW: Container.Children.Clear() is a new method that destroys all children of a container. * NEW: Utility windows now use their initial size as minimum size. * BUG: Do not loop indefinitely when arranging the contents of a ScrollView. git-svn-id: svn://localhost/gambas/trunk@1797 867c0c6c-44f3-4631-809d-bfa615b0a4ec
19 lines
549 B
Makefile
19 lines
549 B
Makefile
SUBDIRS = debug eval db compress vb option draw gui image
|
|
|
|
dist_gblib_DATA = gb.component
|
|
gblib_DATA = gb.component
|
|
|
|
install-data-hook:
|
|
@echo
|
|
@echo "Creating the information files for gb component..."
|
|
@$(INSTALL) -d $(DESTDIR)$(gbdatadir)/info
|
|
@$(DESTDIR)$(bindir)/gbi$(GAMBAS_VERSION) -r $(DESTDIR)$(prefix) gb
|
|
@rm -f $(DESTDIR)$(gblibdir)/lib.gb.la
|
|
@rm -f $(DESTDIR)$(gblibdir)/lib.gb.so*
|
|
|
|
uninstall-hook:
|
|
@rm -rf $(DESTDIR)$(gblibdir)gb.component
|
|
@rm -rf $(DESTDIR)$(gbdatadir)/info/gb.info
|
|
@rm -rf $(DESTDIR)$(gbdatadir)/info/gb.list
|
|
|
|
|