Skip to content

Commit 57978a7

Browse files
committed
Merge pull request #1717 from ggouaillardet/topic/lex_cleanup
configury: clean the flex generated .c files
2 parents 5d4bcce + 5f565df commit 57978a7

File tree

6 files changed

+30
-1
lines changed

6 files changed

+30
-1
lines changed

ompi/mca/coll/ml/Makefile.am

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
# Copyright (c) 2009-2012 Mellanox Technologies. All rights reserved.
44
# Copyright (c) 2013-2014 Los Alamos National Security, LLC. All rights
55
# reserved.
6-
# Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
6+
# Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
7+
# Copyright (c) 2016 Research Organization for Information Science
8+
# and Technology (RIST). All rights reserved.
79
# $COPYRIGHT$
810
#
911
# Additional copyrights may follow
@@ -82,3 +84,6 @@ mca_coll_ml_la_LIBADD =
8284
noinst_LTLIBRARIES = $(component_noinst)
8385
libmca_coll_ml_la_SOURCES =$(sources)
8486
libmca_coll_ml_la_LDFLAGS = -module -avoid-version
87+
88+
maintainer-clean-local:
89+
rm -f coll_ml_lex.c

opal/mca/btl/openib/Makefile.am

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# Copyright (c) 2011 Mellanox Technologies. All rights reserved.
1616
# Copyright (c) 2012 Oak Ridge National Laboratory. All rights reserved
1717
# Copyright (c) 2013 Intel, Inc. All rights reserved.
18+
# Copyright (c) 2016 Research Organization for Information Science
19+
# and Technology (RIST). All rights reserved.
1820
# $COPYRIGHT$
1921
#
2022
# Additional copyrights may follow
@@ -129,3 +131,6 @@ noinst_LTLIBRARIES = $(lib)
129131
libmca_btl_openib_la_SOURCES = $(lib_sources)
130132
libmca_btl_openib_la_LDFLAGS= -module -avoid-version $(btl_openib_LDFLAGS)
131133
libmca_btl_openib_la_LIBADD = $(btl_openib_LIBS)
134+
135+
maintainer-clean-local:
136+
rm -f btl_openib_lex.c

opal/util/Makefile.am

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
# Copyright (c) 2013 Intel, Inc. All rights reserved
1515
# Copyright (c) 2016 Los Alamos National Security, LLC. All rights
1616
# reserved.
17+
# Copyright (c) 2016 Research Organization for Information Science
18+
# and Technology (RIST). All rights reserved.
1719
# $COPYRIGHT$
1820
#
1921
# Additional copyrights may follow
@@ -120,3 +122,6 @@ if WANT_INSTALL_HEADERS
120122
opaldir = $(opalincludedir)/$(subdir)
121123
opal_HEADERS = $(headers)
122124
endif
125+
126+
maintainer-clean-local:
127+
rm -f show_help_lex.c

opal/util/keyval/Makefile.am

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
# University of Stuttgart. All rights reserved.
1010
# Copyright (c) 2004-2005 The Regents of the University of California.
1111
# All rights reserved.
12+
# Copyright (c) 2016 Research Organization for Information Science
13+
# and Technology (RIST). All rights reserved.
1214
# $COPYRIGHT$
1315
#
1416
# Additional copyrights may follow
@@ -27,3 +29,6 @@ noinst_LTLIBRARIES = libopalutilkeyval.la
2729
libopalutilkeyval_la_SOURCES = \
2830
keyval_lex.h \
2931
keyval_lex.l
32+
33+
maintainer-clean-local:
34+
rm -f keyval_lex.c

orte/mca/rmaps/rank_file/Makefile.am

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
# Copyright (c) 2008 Voltaire. All rights reserved
1313
#
1414
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
15+
# Copyright (c) 2016 Research Organization for Information Science
16+
# and Technology (RIST). All rights reserved.
1517
# $COPYRIGHT$
1618
#
1719
# Additional copyrights may follow
@@ -51,3 +53,5 @@ noinst_LTLIBRARIES = $(component_noinst)
5153
libmca_rmaps_rank_file_la_SOURCES =$(sources)
5254
libmca_rmaps_rank_file_la_LDFLAGS = -module -avoid-version
5355

56+
maintainer-clean-local:
57+
rm -f rmaps_rank_file_lex.c

orte/util/Makefile.am

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
# Copyright (c) 2008 Sun Microsystems, Inc. All rights reserved.
1313
# Copyright (c) 2014 Cisco Systems, Inc. All rights reserved.
1414
# Copyright (c) 2014-2016 Intel, Inc. All rights reserved.
15+
# Copyright (c) 2016 Research Organization for Information Science
16+
# and Technology (RIST). All rights reserved.
1517
# $COPYRIGHT$
1618
#
1719
# Additional copyrights may follow
@@ -81,3 +83,6 @@ lib@ORTE_LIB_PREFIX@open_rte_la_SOURCES += \
8183
# Remove the generated man pages
8284
distclean-local:
8385
rm -f $(nodist_man_MANS)
86+
87+
maintainer-clean-local:
88+
rm -f util/hostfile/hostfile_lex.c

0 commit comments

Comments
 (0)