c4e8abec01
* BUG: Harmonize the messages displayed when DESTDIR or ROOT is used during compilation. * NEW: Switch version number to 2.99.1 and bytecode version to 3.0.0. WARNING! ALL GAMBAS PROJECTS MUST BE RECOMPILED. [DEVELOPMENT ENVIRONMENT] * BUG: Generated Debian packages now correctly depends on gambas3-dev and not gambas2-dev. [GB.QT4.OPENGL] * NEW: Remove the GlArea.Text() method, as it may be impossible to implement inside gb.gtk.opengl. git-svn-id: svn://localhost/gambas/trunk@3673 867c0c6c-44f3-4631-809d-bfa615b0a4ec
54 lines
2 KiB
Makefile
54 lines
2 KiB
Makefile
EXTRA_DIST = reconf src spec
|
|
##AUTOMAKE_OPTIONS = dist-bzip2
|
|
|
|
install-exec-local:
|
|
@if test "x$(ROOT)" != "x"; then \
|
|
echo "[Installing with ROOT=$(ROOT)]"; \
|
|
fi
|
|
@if test "x$(DESTDIR)" != "x"; then \
|
|
echo "[Installing with DESTDIR=$(DESTDIR)]"; \
|
|
ROOT=$DESTDIR; \
|
|
fi
|
|
|
|
@echo
|
|
@echo "Running the informer again twice because of dependencies between information files"
|
|
@$(DESTDIR)$(bindir)/gbi$(GAMBAS_VERSION) -r $(DESTDIR)$(prefix)
|
|
@$(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); \
|
|
if test $$? -eq 0; then \
|
|
$(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; \
|
|
if test -d .hidden/control; then \
|
|
$(INSTALL) -d $(DESTDIR)$(gbdatadir)/control; \
|
|
$(INSTALL) -d $(DESTDIR)$(gbdatadir)/control/$$p; \
|
|
$(INSTALL) .hidden/control/*.png $(DESTDIR)$(gbdatadir)/control/$$p; \
|
|
fi \
|
|
else \
|
|
echo "|| Unable to compile $$p" >> ../../../warnings.log; \
|
|
fi \
|
|
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"`;)
|
|
|