Skip to content

Commit

Permalink
install other package information files
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Voigt authored and Alexander Voigt committed Sep 3, 2016
1 parent f6090bb commit 457f05d
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions config/Makefile.in
Expand Up @@ -122,8 +122,11 @@ CONVERT_DOS_PATHS := config/convert_dos_paths.sh
# script which finds Mathematica's include paths
MATH_INC_PATHS := config/mathematica_include_paths.sh

# README file
README_FILE := README
# package information files
README_FILE := README
AUTHORS_FILE := AUTHORS
COPYING_FILE := COPYING
ChangeLog_FILE := ChangeLog

.PHONY: all allsrc allexec alllib allll alltest clean clean-dep \
clean-executables clean-generated clean-lib clean-obj \
Expand All @@ -147,8 +150,11 @@ install-src::
else
install-src::
install -d $(INSTALL_DIR)
$(INSTALL_STRIPPED) $(CONFIGURE_SCRIPT) $(INSTALL_DIR)/configure -m u=rwx,g=r,o=r
$(INSTALL_STRIPPED) $(README_FILE) $(INSTALL_DIR)/README -m u=rw,g=r,o=r
$(INSTALL_STRIPPED) $(CONFIGURE_SCRIPT) $(INSTALL_DIR) -m u=rwx,g=r,o=r
$(INSTALL_STRIPPED) $(README_FILE) $(INSTALL_DIR) -m u=rw,g=r,o=r
$(INSTALL_STRIPPED) $(AUTHORS_FILE) $(INSTALL_DIR) -m u=rw,g=r,o=r
$(INSTALL_STRIPPED) $(COPYING_FILE) $(INSTALL_DIR) -m u=rw,g=r,o=r
$(INSTALL_STRIPPED) $(ChangeLog_FILE) $(INSTALL_DIR) -m u=rw,g=r,o=r

ifeq ($(ENABLE_META),yes)
install-src:: allsrc
Expand Down

0 comments on commit 457f05d

Please sign in to comment.