aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-03-31 23:54:21 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-03-31 23:54:21 -0700
commit33d5cc415ec31d14f126dbb19f8538b04d2c1b49 (patch)
tree85fee2d4742489076a1821600c9f06cd79034314 /configure
parente7131a5983c4caff45c97e69b979002f0c1ff381 (diff)
Makefiles: Make the install rules quiet like the compilation rules.
The output from make is looking better all the time, (though the columns still aren't lined up).
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 12 insertions, 0 deletions
diff --git a/configure b/configure
index 7db537e4..3e30cee9 100755
--- a/configure
+++ b/configure
@@ -282,6 +282,18 @@ EMACS = emacs --quick
# Command to execute gzip from Makefiles
gzip = gzip
+# Command to create a directory
+MKDIR = install -d
+
+# Command to install an executable
+INSTBIN = install
+
+# Command to install a non-executable file (documentation, etc.)
+INSTDATA = install -m0644
+
+# Command to create a symbolic link
+SYMLINK = ln -sf
+
# Default FLAGS for C compiler (can be overridden by user such as "make CFLAGS=-g")
CFLAGS = ${CFLAGS}