1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
BEGIN_MODULE
NAME main
DESC "Module for the main program"
# In this section, insert the #include/#define directives that are needed for
# compiling
BEGIN_INCLUDE
END_INCLUDE
# In this section, insert the CFLAGS that are needed for compiling
BEGIN_CFLAGS
END_CFLAGS
# In this section, insert the LDFLAGS that are needed for compiling
BEGIN_LDFLAGS
END_LDFLAGS
int bin_instrumented_function(double *t, int size, int n)
int lib_instrumented_function(double *t, int size, int n)
END_MODULE
|