forked from sstsimulator/sst-macro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
63 lines (50 loc) · 1.76 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#
# This file is part of SST/macroscale:
# The macroscale architecture simulator from the SST suite.
# Copyright (c) 2009-2021 NTESS.
# This software is distributed under the BSD License.
# Under the terms of Contract DE-NA0003525 with NTESS,
# the U.S. Government retains certain rights in this software.
# For more information, see the LICENSE file in the top
# SST/macroscale directory.
#
include $(top_srcdir)/Makefile.common
# Files that should be distributed but are not built.
EXTRA_DIST = LICENSE bootstrap.sh \
developer-sstmacro-11.0.pdf \
manual-sstmacro-11.0.pdf \
pdes-report.pdf \
docs \
share \
skeletons \
configurations
SUBDIRS = $(subdirs) include sumi-mpi sprockit sumi sstmac bin python tests configurations share
dist_bin_SCRIPTS = sstmacro-libtool
ACLOCAL_AMFLAGS = -I acinclude
.PHONY: doc superclean gui
doc:
cd docs && doxygen doxygen.cfg
cd sst-dumpi && make doc
#doc-install: doc
# $(INSTALL) -d docs/sst-macroscale @docdir@
# cd dumpi && make doc-install
#
if REPO_BUILD
sstmac_repo.h: .git/refs/heads/@git_branch@
cd $(abs_top_srcdir) && $(abs_top_srcdir)/bin/make_repo_header $(abs_top_srcdir) sstmac
endif
sstmacro-libtool: libtool
cp -fp $< $@
superclean: clean distclean-am
rm -rf configure autom4te.cache bin aclocal.m4 src/sstmacconfig.h.in config.log config.status
rm -f acinclude/ltsugar.m4 acinclude/libtool.m4 acinclude/ltversion.m4 acinclude/lt~obsolete.m4 acinclude/ltoptions.m4
rm -f src/sstmacconfig.h src/stamp-h1
cd sst-dumpi; $(MAKE) superclean
find . -name Makefile.in -type f |xargs rm -f
find . -name .deps -type d |xargs rm -rf
find . -name Makefile -type f |xargs rm -f
rm -f tests/stats.log
clean-local:
rm -f sstmacro-libtool
rm -f _configs.sed
rm -rf $(XCODEBUILD_TMPDIR)