File: Makefile.am

package info (click to toggle)
opensm 3.3.23-3.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,932 kB
  • sloc: ansic: 97,383; yacc: 2,227; sh: 685; lex: 404; makefile: 391; perl: 143
file content (23 lines) | stat: -rw-r--r-- 661 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

if DEBUG
DBGFLAGS = -ggdb -D_DEBUG_
else
DBGFLAGS = -g
endif

AM_CPPFLAGS = -I$(srcdir)/include $(OSMV_INCLUDES)

sbin_PROGRAMS = osmtest
osmtest_SOURCES = main.c osmtest.c osmt_service.c osmt_slvl_vl_arb.c \
		 osmt_multicast.c osmt_inform.c
if OSMV_VAPI
osmtest_SOURCES += osmt_mtl_regular_qp.c
endif
osmtest_CFLAGS = -Wall -Wwrite-strings $(DBGFLAGS)
osmtest_LDADD = -L../complib -losmcomp -L../libopensm -lopensm -L../libvendor -losmvendor $(OSMV_LDADD)

EXTRA_DIST = $(srcdir)/include/osmt_inform.h \
   $(srcdir)/include/osmtest_subnet.h \
   $(srcdir)/include/osmtest.h \
   $(srcdir)/include/osmt_mtl_regular_qp.h \
   $(srcdir)/include/osmtest_base.h