comparison Makefile.gen @ 842:9a7323271347

Remove obsolete configuration setting.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 14 Jul 2014 00:46:53 +0300
parents dd35d66c3714
children 5ea0bf4379b1
comparison
equal deleted inserted replaced
841:dd35d66c3714 842:9a7323271347
45 45
46 46
47 ### 47 ###
48 ### Form additional compilation defines based on settings 48 ### Form additional compilation defines based on settings
49 ### 49 ###
50
51 # If C routines are not explicitly disabled, we enable them
52 ifeq ($(DM_USE_C),)
53 DM_USE_C=yes
54 endif
55
56 ifeq ($(DM_USE_C),yes)
57 DM_CFLAGS+=-DDM_USE_C
58 endif
59 50
60 # Enable SIMD routines, if requested 51 # Enable SIMD routines, if requested
61 ifeq ($(DM_USE_SIMD),yes) 52 ifeq ($(DM_USE_SIMD),yes)
62 DM_CFLAGS+=-DDM_USE_SIMD -msse2 53 DM_CFLAGS+=-DDM_USE_SIMD -msse2
63 endif 54 endif