Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add tesh[t], the TEsting SHell Tool
[simgrid.git] / tools / tesh / Makefile.am
diff --git a/tools/tesh/Makefile.am b/tools/tesh/Makefile.am
new file mode 100644 (file)
index 0000000..bc95b5f
--- /dev/null
@@ -0,0 +1,18 @@
+AM_CFLAGS = -g
+
+INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/src/include
+
+bin_PROGRAMS = tesh
+
+tesh_SOURCES = tesh.c
+tesh_LDADD   = $(top_builddir)/src/libsimgrid.la 
+
+TESTS_ENVIRONMENT=./tesh
+TESTS=basic.tesh  cd.tesh \
+      broken-pipe.tesh segfault.tesh  timeout.tesh \
+      non-blocking-IO.tesh
+
+$(top_builddir)/src/libsimgrid.la: 
+       make -C $(top_builddir)/src libsimgrid.la
+
+include $(top_srcdir)/acmacro/dist-files.mk