diff options
author | Peter Powell <petpow@saberuk.com> | 2013-08-15 05:57:46 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2013-08-18 11:41:43 +0100 |
commit | 3070548ceeffd3c09ce26d816a1d225dbe9d137e (patch) | |
tree | 03139f43d6723876a8c9480a91207de62ed90028 /make/template/main.mk | |
parent | e950f568d0f571e9475aa38177486468714de4d3 (diff) |
Clean up and move various subroutines.
- Fix indentation of get_compiler_info and clean up slightly.
- Move module_installed to make::utilities.
- Remove promptnumeric (unused).
- Rename clean to cmd_clean and rewrite.
- Rename dir_check to prompt_bool and rewrite.
- Rename dumphash to dump_hash.
- Rename getcache to read_configure_cache and rewrite.
- Rename getrevision to get_revision.
- Rename makecache to write_configure_cache and rewrite.
- Rename promptstring_s to prompt_string and rewrite.
- Rename showhelp to cmd_help and rewrite.
- Rename update to cmd_update and rewrite.
- Rename yesno to prompt_bool and rewrite.
- Replace getmodules with a <src/modules/m_*.cpp> glob.
Diffstat (limited to 'make/template/main.mk')
-rw-r--r-- | make/template/main.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/make/template/main.mk b/make/template/main.mk index b93c15094..bdb4d9762 100644 --- a/make/template/main.mk +++ b/make/template/main.mk @@ -46,9 +46,9 @@ DATPATH = "$(DESTDIR)@DATA_DIR@" BINPATH = "$(DESTDIR)@BINARY_DIR@" INSTALL = install INSTUID = @UID@ -INSTMODE_DIR = 0755 -INSTMODE_BIN = 0755 -INSTMODE_LIB = 0644 +INSTMODE_DIR = 0750 +INSTMODE_BIN = 0750 +INSTMODE_LIB = 0640 @IFNEQ $(COMPILER) icc CORECXXFLAGS += -pedantic -Woverloaded-virtual -Wshadow -Wformat=2 -Wmissing-format-attribute |