| commit | author | age | ||
| 3c6e26 | 1 | bin_PROGRAMS = trisurf |
| 4f5ffc | 2 | trisurf_SOURCES = main.c general.c vertex.c bond.c triangle.c cell.c vesicle.c initial_distribution.c io.c frame.c energy.c timestep.c vertexmove.c bondflip.c poly.c stats.c sh.c shcomplex.c constvol.c snapshot.c restore.c cluster.c b64zlib_compression.c |
| e29756 | 3 | GITVERSION:=$(shell git --no-pager describe --tags --always --dirty) |
| 4f5ffc | 4 | trisurf_CFLAGS = -Wall -Werror -DTS_VERSION=\"$(GITVERSION)\" -fgnu89-inline -Wno-error=date-time $(AM_CFLAGS) |
| 7a11a7 | 5 | AM_CPPFLAGS = ${libxml2_CFLAGS} -fgnu89-inline |
| 4f5ffc | 6 | #trisurf_LDADD = libtrisurf.la ${libcurl_LIBS} ${libxml2_LIBS} |
| SP | 7 | trisurf_LDADD = ${libcurl_LIBS} ${libxml2_LIBS} |
| d0cafa | 8 | |
| 3c6e26 | 9 | #tsmeasure_SOURCES = tsmeasure.c |
| SP | 10 | #tsmeasure_LDADD = libtrisurf.la ${libcurl_LIBS} ${libxml2_LIBS} |
| f4d6ca | 11 | |
| 3c6e26 | 12 | #tspoststat_SOURCES = tspoststat.c |
| SP | 13 | #tspoststat_LDADD = libtrisurf.la ${libcurl_LIBS} ${libxml2_LIBS} |
| 22a18c | 14 | |
| 7d44c8 | 15 | #------------- LIBS ---------- |
| SP | 16 | |
| 17 | lib_LTLIBRARIES= libtrisurf.la | |
| dba66b | 18 | libtrisurf_la_SOURCES= general.c vertex.c bond.c triangle.c cell.c vesicle.c initial_distribution.c io.c frame.c energy.c timestep.c vertexmove.c bondflip.c poly.c stats.c sh.c shcomplex.c constvol.c snapshot.c restore.c cluster.c b64zlib_compression.c |
| 7d44c8 | 19 | #libtrisurf_la_CPPFLAGS = ${libxml2_CFLAGS} |
| d972ae | 20 | libtrisurf_la_LIBADD=${libxml2_LIBS} |
| 4f5ffc | 21 | AM_CFLAGS= -DTS_VERSION=\"$(GITVERSION)\" |
| dba66b | 22 | pkginclude_HEADERS=general.h vertex.h bond.h triangle.h cell.h vesicle.h initial_distribution.h io.h frame.h energy.h timestep.h vertexmove.h bondflip.h poly.h stats.h sh.h shcomplex.h constvol.h snapshot.h restore.h cluster.h b64zlib_compression.h |