summarylogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorBuildTools2015-12-24 12:28:06 -0800
committerBuildTools2015-12-24 12:28:06 -0800
commitd6db24ce0085c76f72a1f2ed9a261df606179331 (patch)
tree874de66c11466dd6ce1121c9b8775f5c8a62f7d6 /config
parentd5e0cd77863b65d2d5032a20e99fa1cc91749640 (diff)
downloadaur-d6db24ce0085c76f72a1f2ed9a261df606179331.tar.gz
1.13
Diffstat (limited to 'config')
-rw-r--r--config22
1 files changed, 0 insertions, 22 deletions
diff --git a/config b/config
deleted file mode 100644
index 16dca84c0b66..000000000000
--- a/config
+++ /dev/null
@@ -1,22 +0,0 @@
-# config file used for the Makefile only
-
-# define to 1 to use Altivec instructions
-USE_ALTIVEC ?= 0
-
-# define to 1 to use SSE2 instructions
-USE_SSE ?= 0
-
-# default flags
-CXXFLAGS ?= -O2
-ifeq ($(USE_ALTIVEC),1)
-CPPFLAGS += -DSQUISH_USE_ALTIVEC=1
-CXXFLAGS += -maltivec
-endif
-ifeq ($(USE_SSE),1)
-CPPFLAGS += -DSQUISH_USE_SSE=2
-CXXFLAGS += -msse
-endif
-
-# where should we install to
-INSTALL_DIR ?= @DESTDIR@
-