aboutsummaryrefslogtreecommitdiffstats
path: root/mk/copy.mk
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2017-06-06 13:55:17 +0200
committerMattias Andrée <maandree@kth.se>2017-06-06 13:59:36 +0200
commite047ec28ef55bc5a2bb8b1790201e51d02eb5a12 (patch)
tree28f7dacb5d45dbe7aa252f53a18187208fc6464a /mk/copy.mk
parentPrepare for release (diff)
downloadlibcolour-e047ec28ef55bc5a2bb8b1790201e51d02eb5a12.tar.gz
libcolour-e047ec28ef55bc5a2bb8b1790201e51d02eb5a12.tar.bz2
libcolour-e047ec28ef55bc5a2bb8b1790201e51d02eb5a12.tar.xz
Remove a much of stuff, change license, and add support for float and long double
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'mk/copy.mk')
-rw-r--r--mk/copy.mk78
1 files changed, 0 insertions, 78 deletions
diff --git a/mk/copy.mk b/mk/copy.mk
deleted file mode 100644
index c9067a4..0000000
--- a/mk/copy.mk
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright (C) 2015, 2016 Mattias Andrée <maandree@member.fsf.org>
-#
-# Copying and distribution of this file, with or without modification,
-# are permitted in any medium without royalty provided the copyright
-# notice and this notice are preserved. This file is offered as-is,
-# without any warranty.
-
-
-#=== These rules are used for legal files. ===#
-
-
-# Enables the rules:
-# install-copyright Install all files in _COPYING and _LICENSE
-# install-copying Install all files in _COPYING
-# install-license Install all files in _LICENSE
-
-
-# WHEN TO BUILD, INSTALL, AND UNINSTALL:
-
-install-base: install-copyright
-uninstall: uninstall-copyright
-
-
-# INSTALL RULES:
-
-.PHONY: install-copyright
-install-copyright:
-
-ifdef _COPYING
-.PHONY: install-copyright
-install-copyright: install-copying
-
-.PHONY: install-copying
-install-copying: $(foreach F,$(_COPYING),$(v)$(F))
- @$(PRINTF_INFO) '\e[00;01;31mINSTALL\e[34m %s\e[00m\n' "$@"
- $(Q)$(INSTALL_DIR) -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
- $(Q)$(INSTALL_DATA) $^ -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
- @$(ECHO_EMPTY)
-endif
-
-ifdef _LICENSE
-.PHONY: install-copyright
-install-copyright: install-license
-
-.PHONY: install-license
-install-license: $(foreach F,$(_LICENSE),$(v)$(F))
- @$(PRINTF_INFO) '\e[00;01;31mINSTALL\e[34m %s\e[00m\n' "$@"
- $(Q)$(INSTALL_DIR) -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
- $(Q)$(INSTALL_DATA) $^ -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
- @$(ECHO_EMPTY)
-endif
-
-
-# UNINSTALL RULES:
-
-.PHONY: uninstall-copyright
-uninstall-copyright:
-
-ifdef _COPYING
-.PHONY: uninstall-copyright
-uninstall-copyright: uninstall-copying
-
-.PHONY: uninstall-copying
-uninstall-copying:
- -$(Q)$(RM) -- $(foreach F,$(_COPYING),"$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/$(F)")
- -$(Q)$(RMDIR) -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
-endif
-
-ifdef _LICENSE
-.PHONY: uninstall-copyright
-uninstall-copyright: uninstall-license
-
-.PHONY: uninstall-license
-uninstall-license:
- -$(Q)$(RM) -- $(foreach F,$(_LICENSE),"$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/$(F)")
- -$(Q)$(RMDIR) -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
-endif
-