Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Massive mv to use cmake as the default compilation infrastructure.
[simgrid.git] / examples / simdag / Makefile.am
1 # Copyright (c) 2004-2007. The SimGrid team. All right reserved.
2
3 # This file is part of the SimGrid project. This is free software:
4 # You can redistribute and/or modify it under the terms of the
5 # GNU LGPL (v2.1) licence.
6
7
8 INCLUDES = -I$(top_srcdir)/include
9 AM_CFLAGS = -g
10 EXTRA_DIST = 2clusters.xml 
11
12 CLEANFILES = sd_test.trace
13
14 TESTS_ENVIRONMENT = $(top_builddir)/tools/tesh/tesh
15
16 TESTS = test_simdag.tesh test_simdag2.tesh properties/test_prop.tesh metaxml/metaxml_test.tesh
17 noinst_PROGRAMS = sd_test sd_test2 properties/sd_prop metaxml/sd_meta\
18  dax/dax_test
19 XFAIL_TESTS = metaxml/metaxml_test.tesh
20
21 properties_sd_prop_SOURCES = properties/sd_prop.c
22 properties_sd_prop_LDADD = $(top_builddir)/src/libsimgrid.la
23
24 dax_dax_test_SOURCES = dax/dax_test.c
25 dax_dax_test_LDADD = $(top_builddir)/src/libsimgrid.la
26
27 metaxml_sd_meta_SOURCES = metaxml/sd_meta.c
28 metaxml_sd_meta_LDADD = $(top_builddir)/src/libsimgrid.la
29
30 sd_test_SOURCES = sd_test.c
31 sd_test_LDADD = $(top_builddir)/src/libsimgrid.la
32
33 sd_test2_SOURCES = sd_test2.c
34 sd_test2_LDADD = $(top_builddir)/src/libsimgrid.la
35
36 EXTRA_DIST+=$(TESTS)
37 include $(top_srcdir)/acmacro/dist-files.mk