Skip to content
Snippets Groups Projects
Makefile 270 B
Newer Older
include ${FSLCONFDIR}/default.mk

PROJNAME    = utils_tests
XFILES      = test_fslStartup
USRCXXFLAGS = -fopenmp
LIBS        = -lfsl-utils

all: ${XFILES}

%: %.cc
	${CXX} ${CXXFLAGS} -o $@ $<

test_fslStartup: test_fslStartup.cc
	${CXX} ${CXXFLAGS} -o $@ $< ${LDFLAGS}