-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
25 lines (19 loc) · 894 Bytes
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I m4
bin_PROGRAMS = testdev
testdev_SOURCES = sortio.h
testdev_SOURCES += test.cpp sortio.cpp read_data.cpp io_read_tasks.cpp io_xfer_tasks.cpp
testdev_SOURCES += xfer_recv_tasks.cpp sort_tasks.cpp
testdev_SOURCES += $(PARSORT_PREFIX)/src/par/parUtils.C $(PARSORT_PREFIX)/src/binOps/binUtils.C
testdev_SOURCES += $(PARSORT_PREFIX)/src/par/sort_profiler.C
BUILT_SOURCES = .license.stamp
AM_CPPFLAGS = $(GRVY_CFLAGS) $(OPENMP_CXXFLAGS) $(BOOST_CPPFLAGS)
LIBS = $(GRVY_LIBS) $(OPENMP_CXXFLAGS)
#---------------------------------
# Embedded license header support
#---------------------------------
.license.stamp: $(top_srcdir)/LICENSE
$(top_srcdir)/utils/update_license.pl -S=$(top_srcdir) \
$(top_srcdir)/LICENSE $(testdev_SOURCES)
echo 'updated source license headers' >$@
CLEANFILES = .license.stamp