24 lines
736 B
Makefile
24 lines
736 B
Makefile
cc_sources = HMW_test_1.cpp
|
|
|
|
INC = -I$(top_builddir)/include/
|
|
AM_CPPFLAGS = $(INC)
|
|
AM_CXXFLAGS = $(AM_CPPFLAGS)
|
|
|
|
LINK = -loneD -lzeroD -lequil -lkinetics -ltransport -lthermo
|
|
LINK += -lctnumerics -lctmath -ltpx -lctspectra -lctbase -lcvode
|
|
LINK += -lctlapack -lctblas -lctf2c -lm -lstdc++ -lexecstream -pthread
|
|
AM_LDFLAGS = -L$(top_builddir)/build/lib/
|
|
LIBS = $(LINK)
|
|
|
|
bin_PROGRAMS = HMW_test_1
|
|
library_includedir = $(INC)
|
|
|
|
#-----------------------
|
|
# Cantera DH graph test
|
|
#-----------------------
|
|
|
|
HMW_test_1_SOURCES = $(cc_sources)
|
|
|
|
# test needs to be repaired
|
|
#TESTS_ENVIRONMENT =
|
|
#TESTS = runtest
|