https://github.com/cran/dtw
Raw File
Tip revision: f3fa0a2ccb9bde3782d3555dfc9ebd3381d1757f authored by Toni Giorgino on 30 November 2007, 00:00:00 UTC
version 0.4-2
Tip revision: f3fa0a2
Makevars
###############################################################
#                                                             #
#   (c) Toni Giorgino <toni.giorgino gmail.com>           #
#       Laboratory for Biomedical Informatics                 #
#       University of Pavia - Italy                           #
#       www.labmedinfo.org                                    #
#                                                             #
#   $Id: dtw.R 31 2007-12-07 10:46:09Z tonig $
#                                                             #
###############################################################




# Preserve the R makefile default target
.PHONY:
all: $(SHLIB)


# Allow building a stand alone executable with test main method
# Usage: make -f Makevars test_computeCM

# You may want to undefine  DMALLOC below
TEST_UNIT_CFLAGS=-std=gnu99 -DDMALLOC -g -DTEST_UNIT
TEST_UNIT_LOADLIBES=-ldmalloc

test_computeCM: computeCM.c computeCM.h
	$(CC) $(TEST_UNIT_CFLAGS) $< -o $@  $(TEST_UNIT_LOADLIBES)

back to top