summaryrefslogtreecommitdiff
path: root/tnet_io/tnet.mk
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2015-06-25 12:56:45 +0800
committerDeterminant <ted.sybil@gmail.com>2015-06-25 12:56:45 +0800
commita74183ddb4ab8383bfe214b3745eb8a0a99ee47a (patch)
treed5e69cf8c4c2db2e3a4722778352fc3c95953bb2 /tnet_io/tnet.mk
parentb6301089cde20f4c825c7f5deaf179082aad63da (diff)
let HTK I/O implementation be a single package
Diffstat (limited to 'tnet_io/tnet.mk')
-rw-r--r--tnet_io/tnet.mk83
1 files changed, 0 insertions, 83 deletions
diff --git a/tnet_io/tnet.mk b/tnet_io/tnet.mk
deleted file mode 100644
index 9f933db..0000000
--- a/tnet_io/tnet.mk
+++ /dev/null
@@ -1,83 +0,0 @@
-#
-# This makefile contains some global definitions,
-# that are used during the build process.
-# It is included by all the subridrectory libraries.
-#
-
-
-##############################################################
-##### 64-BIT CROSS-COMPILATION #####
-CXXFLAGS=
-FWDPARAM=
-BITS64=true
-ifeq ($(BITS64), true)
- ##### CHANGE WHEN DIFFERENT 64BIT g++ PREFIX #####
- CROSS_COMPILE = x86_64-linux-
- ##### CHANGE WHEN DIFFERENT 64BIT g++ PREFIX #####
- CXXFLAGS += -m64
- FWDPARAM += BITS64=true
-else
- CXXFLAGS += -m32
-endif
-
-# disable cross-compile prefix if CXX not exists
-CXX=$(CROSS_COMPILE)g++
-CXX2=$(notdir $(shell which $(CXX) 2>/dev/null))
-ifneq ("$(CXX)", "$(CXX2)")
- CROSS_COMPILE=
-endif
-
-# compilation tools
-CC = $(CROSS_COMPILE)g++
-CXX = $(CROSS_COMPILE)g++
-AR = $(CROSS_COMPILE)ar
-RANLIB = $(CROSS_COMPILE)ranlib
-AS = $(CROSS_COMPILE)as
-
-
-
-
-##############################################################
-##### PATH TO CUDA TOOLKIT #####
-#CUDA_TK_BASE=/usr/local/share/cuda-3.2.12
-#CUDA_TK_BASE=/usr/local/cuda
-##### PATH TO CUDA TOOLKIT #####
-
-
-
-
-# compilation args
-CXXFLAGS += -g -Wall -O2 -DHAVE_ATLAS -rdynamic -fPIC
-CXXFLAGS += -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion
-
-# enable double-precision
-ifeq ($(DOUBLEPRECISION), true)
- CXXFLAGS += -DDOUBLEPRECISION
- FWDPARAM += DOUBLEPRECISION=true
-endif
-
-
-# compile all the source .cc files
-SRC=$(wildcard *.cc)
-OBJ=$(addprefix $(OBJ_DIR)/,$(patsubst %.cc, %.o, $(SRC)))
-
-
-
-
-#########################################################
-# CONFIGURATION CHECKS
-#
-
-#check that CUDA_TK_BASE is set correctly
-ifeq ("$(wildcard $(CUDA_TK_BASE)/bin/nvcc)", "$(CUDA_TK_BASE)/bin/nvcc")
- HAVE_CUDA=true
-else
- ifeq ($(CUDA), true)
- $(error %%% CUDA not found! Incorrect path in CUDA_TK_BASE: $(CUDA_TK_BASE) in 'trunk/src/tnet.mk')
- endif
-endif
-
-#
-#########################################################
-
-