7dabc871a2
* BUG: Do not abort installation if a component written in gambas cannot be installed. * BUG: Disable colorgcc, libtool does not support it. [DEVELOPMENT ENVIRONMENT] * BUG: Print the real size of directory contents when getting information on a project directory. [WIKI CGI SCRIPT] * BUG: Some fixes in 'example' section and in view mode. [INTERPRETER] * BUG: Fix illegal memory access in locale-aware string comparison. * BUG: Fix a possible crash in String.UCase() and String.LCase(). [GB.FORM] * BUG: SidePanel arrow buttons are correctly drawn with gb.gtk now. [GB.GTK] * BUG: Fix the Image.MakeTransparent() method. * BUG: Fix the arrangement of ScrollView container. * BUG: Fix the memory leak in the Picture class. * BUG: Remove the Window resize event compression. * BUG: Gridview cells are correctly refreshed now when their Picture or Font property change. [GB.NET.CURL] * BUG: The Status property is correctly set after an error now. [GB.QT] * BUG: Correctly clears the internal closed flag when opening a Window. * BUG: WAIT does not take 100% CPU anymore. [GB.QT.EXT] * BUG: In Editor, the cursor could disappear when clicking. Fix that. [GB.XML] * BUG: The management of XML nodes was incorrect, and so was redesigned. git-svn-id: svn://localhost/gambas/trunk@1646 867c0c6c-44f3-4631-809d-bfa615b0a4ec
48 lines
1.7 KiB
Makefile
48 lines
1.7 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
EXTRA_DIST = reconf src spec
|
|
##AUTOMAKE_OPTIONS = dist-bzip2
|
|
|
|
install-exec-local:
|
|
@if test "x$(ROOT)" != "x"; then \
|
|
echo "Installing with ROOT=$(ROOT)"; \
|
|
echo; \
|
|
fi
|
|
|
|
@if test "x$(DESTDIR)" != "x"; then \
|
|
echo "Installing with DESTDIR=$(DESTDIR)"; \
|
|
echo; \
|
|
ROOT=$DESTDIR; \
|
|
fi
|
|
|
|
@echo "Running the informer again because of dependencies between information files"
|
|
@$(DESTDIR)$(bindir)/gbi$(GAMBAS_VERSION) -r $(DESTDIR)$(prefix)
|
|
|
|
@echo "Installing the components..."
|
|
@(cd $(srcdir)/src; d=`pwd`; for p in `cat order`; do \
|
|
echo "Compiling $$p..."; \
|
|
cd $$d/$$p; \
|
|
$(DESTDIR)$(bindir)/gbc$(GAMBAS_VERSION) -ag -r $(DESTDIR)$(prefix); \
|
|
$(DESTDIR)$(bindir)/gba$(GAMBAS_VERSION); \
|
|
rm -rf .gambas; \
|
|
echo "Installing $$p..."; \
|
|
$(INSTALL) $$p.gambas $(DESTDIR)$(gblibdir); \
|
|
$(INSTALL) .component $(DESTDIR)$(gblibdir)/$$p.component; \
|
|
chmod a-x $(DESTDIR)$(gblibdir)/$$p.component; \
|
|
$(INSTALL) .info $(DESTDIR)$(gbdatadir)/info/$$p.info; \
|
|
chmod a-x $(DESTDIR)$(gbdatadir)/info/$$p.info; \
|
|
$(INSTALL) .list $(DESTDIR)$(gbdatadir)/info/$$p.list; \
|
|
chmod a-x $(DESTDIR)$(gbdatadir)/info/$$p.list; \
|
|
done; true)
|
|
|
|
uninstall-local:
|
|
@(cd $(srcdir)/src; for p in *; do \
|
|
rm -f $(DESTDIR)$(gblibdir)/$$p.gambas; \
|
|
rm -f $(DESTDIR)$(gblibdir)/$$p.component; \
|
|
rm -f $(DESTDIR)$(gbdatadir)/info/$$p.info; \
|
|
rm -f $(DESTDIR)$(gbdatadir)/info/$$p.list; \
|
|
done)
|
|
|
|
dist-hook:
|
|
@(cd $(distdir)/src; rm -rf `find . -name ".gambas" -o -name ".lock" -o -name ".xvpics" -o -name "*~" -o -name "*.out" -o -name "*.pot" -o -name "*.gambas" -o -name "core.*" -o -name ".kdbg*" -o -name ".svn"`;)
|
|
|