ac1a4f5a4f
* BUG: The help installation should work again. git-svn-id: svn://localhost/gambas/trunk@1577 867c0c6c-44f3-4631-809d-bfa615b0a4ec
13 lines
451 B
Makefile
13 lines
451 B
Makefile
SUBDIRS = help
|
|
EXTRA_DIST = reconf spec
|
|
|
|
install-exec-local:
|
|
@echo
|
|
@echo "Installing the gambas help files..."
|
|
@rm -rf $(DESTDIR)$(gbdatadir)/help
|
|
@$(INSTALL) -d $(DESTDIR)$(gbdatadir)/help
|
|
@cp -R $(srcdir)/help $(DESTDIR)$(gbdatadir)
|
|
@(cd $(DESTDIR)$(gbdatadir)/help; tar xfz $(DESTDIR)$(gbdatadir)/help/help.tar.gz; $(LN_S) -f help/img img; $(LN_S) -f help/image image; rm -f Makefile*)
|
|
|
|
uninstall-local:
|
|
@rm -rf $(DESTDIR)$(gbdatadir)/help
|