summaryrefslogtreecommitdiff
path: root/performance-tests/SCTP/SCTP.mpc
diff options
context:
space:
mode:
Diffstat (limited to 'performance-tests/SCTP/SCTP.mpc')
-rw-r--r--performance-tests/SCTP/SCTP.mpc57
1 files changed, 57 insertions, 0 deletions
diff --git a/performance-tests/SCTP/SCTP.mpc b/performance-tests/SCTP/SCTP.mpc
new file mode 100644
index 00000000000..91e7b815f4d
--- /dev/null
+++ b/performance-tests/SCTP/SCTP.mpc
@@ -0,0 +1,57 @@
+// -*- MPC -*-
+// $Id$
+
+project(*SOCK_STREAM_clt) : aceexe {
+ exename = SOCK_STREAM_clt
+ source_files {
+ SOCK_STREAM_clt.cpp
+ Options_Manager.cpp
+ hist.cpp
+ }
+
+ // Some source code uses the sqrt and pow function and
+ // some UNIX operating systems need the math library to
+ // get the symbol.
+ verbatim(gnuace, local) {
+ LDLIBS += $(MATHLIB)
+ }
+}
+
+project(*SOCK_STREAM_srv) : aceexe {
+ exename = SOCK_STREAM_srv
+ source_files {
+ SOCK_STREAM_srv.cpp
+ Options_Manager.cpp
+ }
+}
+
+project(*SOCK_SEQPACK_clt) : aceexe {
+ exename = SOCK_SEQPACK_clt
+ source_files {
+ SOCK_SEQPACK_clt.cpp
+ Options_Manager.cpp
+ hist.cpp
+ }
+
+ // Some source code uses the sqrt and pow function and
+ // some UNIX operating systems need the math library to
+ // get the symbol.
+ verbatim(gnuace, local) {
+ LDLIBS += $(MATHLIB)
+ }
+}
+
+project(*SOCK_SEQPACK_srv) : aceexe {
+ exename = SOCK_SEQPACK_srv
+ source_files {
+ SOCK_SEQPACK_srv.cpp
+ Options_Manager.cpp
+ }
+}
+
+project(*SOCK_SEQPACK_Association_Test) : aceexe {
+ exename = SOCK_SEQPACK_Association_Test
+ source_files {
+ SOCK_SEQPACK_Association_Test.cpp
+ }
+}