Changeset 1165 for trunk/Makefile.in
- Timestamp:
- Feb 15, 2008 1:39:13 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.in
r915 r1165 21 21 # Author: Andreas Waechter IBM 2006-04-13 22 22 23 # Copyright (C) 2006 International Business Machines and others.23 # Copyright (C) 2006, 2007 International Business Machines and others. 24 24 # All Rights Reserved. 25 25 # This file is distributed under the Common Public License. … … 28 28 29 29 ######################################################################## 30 # Maintainer Stuff#30 # Documentation installation # 31 31 ######################################################################## 32 32 srcdir = @srcdir@ … … 220 220 sbindir = @sbindir@ 221 221 sharedstatedir = @sharedstatedir@ 222 sol_cc_compiler = @sol_cc_compiler@ 222 223 subdirs = @subdirs@ 223 224 sysconfdir = @sysconfdir@ … … 240 241 # Files that are generated and should be cleaned with make distclean 241 242 DISTCLEANFILES = $(am__append_2) $(VPATH_DISTCLEANFILES) 243 DocFiles = README AUTHORS LICENSE 244 DocInstallDir = $(prefix)/share/doc/coin/$(PACKAGE_NAME) 242 245 all: all-recursive 243 246 … … 682 685 .PHONY: test unitTest tests unitTests doxydoc 683 686 687 install-doc: $(DocFiles) 688 test -z "$(DocInstallDir)" || $(mkdir_p) "$(DESTDIR)$(DocInstallDir)" 689 for file in $(DocFiles); do \ 690 if test -f "$$file"; then dir=; else dir="$(srcdir)/"; fi; \ 691 if test -f "$$dir$$file"; then $(INSTALL_DATA) "$$dir$$file" "$(DESTDIR)$(DocInstallDir)/$$file"; fi; \ 692 done 693 694 uninstall-doc: 695 for file in $(DocFiles); do \ 696 rm -f "$(DESTDIR)$(DocInstallDir)/$$file"; \ 697 done 698 699 ######################################################################## 700 # Maintainer Stuff # 701 ######################################################################## 702 684 703 # Make sure acinclude is using most recent coin.m4 685 704 @MAINTAINER_MODE_TRUE@$(srcdir)/acinclude.m4: $(BUILDTOOLSDIR)/coin.m4 … … 714 733 @HAVE_EXTERNALS_TRUE@@MAINTAINER_MODE_TRUE@update-externals: .Externals-stamp 715 734 @HAVE_EXTERNALS_TRUE@@MAINTAINER_MODE_TRUE@ cd $(srcdir); svn update 735 736 .PHONY: install-doc uninstall-doc update-externals 716 737 # Tell versions [3.59,3.63) of GNU make to not export all variables. 717 738 # Otherwise a system limit (for SysV at least) may be exceeded.
Note: See TracChangeset
for help on using the changeset viewer.