summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorTomi Ollila <too@iki.fi>2012-08-26 22:34:39 +0300
committerTomi Ollila <too@iki.fi>2012-08-30 10:46:58 +0300
commitb648b7712d02670089228a22544708abe5b048b1 (patch)
tree446cad86aa6fa7116392aa556ebed5d5ea5b4378 /src/Makefile
parentd8053c280c0091f51df8715607b8e2535940790b (diff)
downloadlibfaketime-b648b7712d02670089228a22544708abe5b048b1.tar.gz
whitespace cleanup
Used (emacs) M-x untabify for whole faketime.c as the prevailing style in that file used spaces for indentation. Used M-x delete-trailing-whitespace to all files that had either trailing whitespace or empty lines at the end of file to remove those.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/Makefile b/src/Makefile
index d4a04b5..a07a70d 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -4,11 +4,11 @@
# * Compilation Defines:
#
# FAKE_STAT
-# - Enables time faking also for files' timestamps.
+# - Enables time faking also for files' timestamps.
#
# NO_ATFILE
# - Disables support for the fstatat() group of functions
-#
+#
# PTHREAD
# - Define this to enable multithreading support.
#
@@ -19,16 +19,16 @@
# try it unsynchronized.
#
# FAKE_INTERNAL_CALLS
-# - Also intercept libc internal __functions, e.g. not just time(),
+# - Also intercept libc internal __functions, e.g. not just time(),
# but also __time(). Enhances compatibility with applications
# that make use of low-level system calls, such as Java Virtual
-# Machines.
+# Machines.
#
# NO_CACHING
# - Disables the caching of the fake time offset. Only disable caching
-# if you change the fake time offset during program runtime very
+# if you change the fake time offset during program runtime very
# frequently. Disabling the cache may negatively influence the
-# performance.
+# performance.
#
# LIMITEDFAKING
# - Support environment variables that limit time faking to certain
@@ -71,14 +71,14 @@ ${OBJ}: faketime.c
lib%.so.${SONAME}: %.o
${CC} -o $@ -Wl,-soname,$@ $< ${LDFLAGS}
-clean:
+clean:
@rm -f ${OBJ} ${LIBS}
distclean: clean
- @echo
+ @echo
install: ${LIBS}
- @echo
+ @echo
@echo "Copying the faketime libraries to ${DESTDIR}${PREFIX}/lib/faketime and the faketime wrapper script to ${DESTDIR}${PREFIX}/bin ..."
$(INSTALL) -dm0755 "${DESTDIR}${PREFIX}/lib/faketime/"
$(INSTALL) -m0644 ${LIBS} "${DESTDIR}${PREFIX}/lib/faketime/"