summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael D. Stemle, Jr <themanchicken@gmail.com>2018-10-01 20:08:27 -0400
committerMichael D. Stemle, Jr <themanchicken@gmail.com>2018-10-01 20:08:27 -0400
commit39c6872f6d46b51583b0f3d3f3c179e301048b68 (patch)
tree4b451d6df691c2dc009abdc6d94b29fdcd35b4ac /Makefile
parent5c6518c597160109fbe599fb4db9ca91e4a6769c (diff)
downloadlibfaketime-39c6872f6d46b51583b0f3d3f3c179e301048b68.tar.gz
Removing old makefiles.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile34
1 files changed, 0 insertions, 34 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index d88e35a..0000000
--- a/Makefile
+++ /dev/null
@@ -1,34 +0,0 @@
-INSTALL ?= install
-
-UNAME=$(shell uname)
-SELECTOR:=$(shell if test "${UNAME}" = "Darwin" ; then echo "-f Makefile.OSX" ; fi)
-
-all:
- $(MAKE) $(SELECTOR) -C src all
-
-test:
- $(MAKE) $(SELECTOR) -C test all
-
-install:
- $(MAKE) $(SELECTOR) -C src install
- $(MAKE) $(SELECTOR) -C man install
- $(INSTALL) -dm0755 "${DESTDIR}${PREFIX}/share/doc/faketime/"
- $(INSTALL) -m0644 README "${DESTDIR}${PREFIX}/share/doc/faketime/README"
- $(INSTALL) -m0644 NEWS "${DESTDIR}${PREFIX}/share/doc/faketime/NEWS"
-
-uninstall:
- $(MAKE) $(SELECTOR) -C src uninstall
- $(MAKE) $(SELECTOR) -C man uninstall
- rm -f "${DESTDIR}${PREFIX}/share/doc/faketime/README"
- rm -f "${DESTDIR}${PREFIX}/share/doc/faketime/NEWS"
- rmdir "${DESTDIR}${PREFIX}/share/doc/faketime"
-
-clean:
- $(MAKE) $(SELECTOR) -C src clean
- $(MAKE) $(SELECTOR) -C test clean
-
-distclean:
- $(MAKE) $(SELECTOR) -C src distclean
- $(MAKE) $(SELECTOR) -C test distclean
-
-.PHONY: all test install uninstall clean distclean