File: Makefile.am

package info (click to toggle)
mdds 3.2.0-4
  • links: PTS
  • area: main
  • in suites: experimental
  • size: 6,372 kB
  • sloc: cpp: 21,777; sh: 1,369; makefile: 692; python: 602
file content (29 lines) | stat: -rw-r--r-- 523 bytes parent folder | download
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
26
27
28
29
# SPDX-FileCopyrightText: 2025 Kohei Yoshida
#
# SPDX-License-Identifier: MIT

AM_CPPFLAGS = \
	-I$(top_srcdir)/include \
	-I$(top_srcdir)/test/include

TARGETS = \
	mtv-copy-blocks \
	mtv-clone-noncopyable

EXTRA_PROGRAMS = \
	$(TARGETS)

CLEANFILES = \
	$(TARGETS)

mtv_copy_blocks_SOURCES = \
	mtv_copy_blocks.cpp \
	$(top_srcdir)/test/test_global.cpp

mtv_copy_blocks_LDADD = -ltbb

mtv_clone_noncopyable_SOURCES = \
	mtv_clone_noncopyable.cpp \
	$(top_srcdir)/test/test_global.cpp

mtv_clone_noncopyable_LDADD = -ltbb