Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
lscsoft
lalsuite
Commits
4c66c0ad
Commit
4c66c0ad
authored
Jan 02, 2015
by
Karl Wette
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure.ac: sort lists of AC_CONFIG_FILES files
Original: e974bcd4c50a5361e0e6ed1fd8333c9b5a8aad02
parent
e3ccd17f
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
128 additions
and
128 deletions
+128
-128
lal/configure.ac
lal/configure.ac
+49
-49
lalapps/configure.ac
lalapps/configure.ac
+26
-26
lalburst/configure.ac
lalburst/configure.ac
+6
-6
laldetchar/configure.ac
laldetchar/configure.ac
+7
-7
lalframe/configure.ac
lalframe/configure.ac
+6
-6
lalinference/configure.ac
lalinference/configure.ac
+5
-5
lalinspiral/configure.ac
lalinspiral/configure.ac
+6
-6
lalmetaio/configure.ac
lalmetaio/configure.ac
+2
-2
lalpulsar/configure.ac
lalpulsar/configure.ac
+6
-6
lalsimulation/configure.ac
lalsimulation/configure.ac
+6
-6
lalstochastic/configure.ac
lalstochastic/configure.ac
+3
-3
lalxml/configure.ac
lalxml/configure.ac
+6
-6
No files found.
lal/configure.ac
View file @
4c66c0ad
...
...
@@ -5,13 +5,13 @@ AC_CONFIG_SRCDIR([packages/std/include/LALStdio.h])
AC_CONFIG_AUX_DIR([gnuscripts])
AC_CONFIG_MACRO_DIR([gnuscripts])
AC_CONFIG_FILES([ \
lal.spec \
lal.pc \
lalsupport.pc \
Makefile \
debian/Makefile \
include/Makefile \
include/lal/Makefile \
lal.pc \
lal.spec \
lalsupport.pc \
lib/Makefile \
lib/lal/LALVCSInfo.c \
lib/lal/LALVCSInfo.h \
...
...
@@ -21,73 +21,73 @@ AC_CONFIG_FILES([ \
lib/lalsupport/include/Makefile \
lib/lalsupport/src/Makefile \
lib/lalsupport/test/Makefile \
python/Makefile \
python/lal/Makefile \
python/lal/__init__.py \
python/lal/utils/Makefile \
python/lal/spectrum/Makefile \
swig/Makefile \
packages/Makefile \
packages/std/Makefile \
packages/std/doc/Makefile \
packages/std/include/Makefile
packages/std/src/Makefile \
packages/std/test/Makefile \
packages/tools/Makefile \
packages/tools/doc/Makefile \
packages/tools/include/Makefile \
packages/tools/src/Makefile \
packages/tools/test/Makefile \
packages/date/Makefile \
packages/date/doc/Makefile \
packages/date/include/Makefile \
packages/date/src/Makefile \
packages/date/test/Makefile \
packages/factories/Makefile \
packages/factories/doc/Makefile \
packages/factories/include/Makefile \
packages/factories/src/Makefile \
packages/factories/test/Makefile \
packages/vectorops/Makefile \
packages/vectorops/doc/Makefile \
packages/vectorops/include/Makefile \
packages/vectorops/src/Makefile \
packages/vectorops/test/Makefile \
packages/utilities/Makefile \
packages/utilities/doc/Makefile \
packages/utilities/include/Makefile \
packages/utilities/src/Makefile \
packages/utilities/test/Makefile \
packages/stats/Makefile \
packages/stats/doc/Makefile \
packages/stats/include/Makefile \
packages/stats/src/Makefile \
packages/stats/test/Makefile \
packages/fft/Makefile \
packages/fft/doc/Makefile \
packages/fft/include/Makefile \
packages/fft/src/Makefile \
packages/fft/test/Makefile \
packages/inject/Makefile \
packages/inject/doc/Makefile \
packages/inject/include/Makefile \
packages/inject/src/Makefile \
packages/inject/test/Makefile \
packages/date/Makefile \
packages/date/doc/Makefile \
packages/date/include/Makefile \
packages/date/src/Makefile \
packages/date/test/Makefile \
packages/noisemodels/Makefile \
packages/noisemodels/doc/Makefile \
packages/noisemodels/include/Makefile \
packages/noisemodels/src/Makefile \
packages/noisemodels/test/Makefile \
packages/stats/Makefile \
packages/stats/doc/Makefile \
packages/stats/include/Makefile \
packages/stats/src/Makefile \
packages/stats/test/Makefile \
packages/std/Makefile \
packages/std/doc/Makefile \
packages/std/include/Makefile
packages/std/src/Makefile \
packages/std/test/Makefile \
packages/tdfilter/Makefile \
packages/tdfilter/doc/Makefile \
packages/tdfilter/include/Makefile \
packages/tdfilter/src/Makefile \
packages/tdfilter/test/Makefile \
packages/tools/Makefile \
packages/tools/doc/Makefile \
packages/tools/include/Makefile \
packages/tools/src/Makefile \
packages/tools/test/Makefile \
packages/utilities/Makefile \
packages/utilities/doc/Makefile \
packages/utilities/include/Makefile \
packages/utilities/src/Makefile \
packages/utilities/test/Makefile \
packages/vectorops/Makefile \
packages/vectorops/doc/Makefile \
packages/vectorops/include/Makefile \
packages/vectorops/src/Makefile \
packages/vectorops/test/Makefile \
packages/window/Makefile \
packages/window/doc/Makefile \
packages/window/include/Makefile \
packages/window/src/Makefile \
packages/window/test/Makefile \
packages/fft/Makefile \
packages/fft/doc/Makefile \
packages/fft/include/Makefile \
packages/fft/src/Makefile \
packages/fft/test/Makefile \
packages/noisemodels/Makefile \
packages/noisemodels/doc/Makefile \
packages/noisemodels/include/Makefile \
packages/noisemodels/src/Makefile \
packages/noisemodels/test/Makefile
python/Makefile \
python/lal/Makefile \
python/lal/__init__.py \
python/lal/spectrum/Makefile \
python/lal/utils/Makefile \
swig/Makefile \
])
AM_INIT_AUTOMAKE([1.11 foreign subdir-objects color-tests parallel-tests])
...
...
lalapps/configure.ac
View file @
4c66c0ad
...
...
@@ -6,47 +6,47 @@ AC_CONFIG_AUX_DIR([gnuscripts])
AC_CONFIG_MACRO_DIR([gnuscripts])
AC_CONFIG_FILES([\
Makefile \
lalapps.spec \
debian/Makefile \
doc/Makefile \
lalapps.spec \
man/Makefile \
src/Makefile \
src/lalapps/Makefile \
src/lalapps/LALAppsVCSInfo.c \
src/lalapps/LALAppsVCSInfo.h \
src/calibration/Makefile \
src/frametools/Makefile \
src/findchirp/Makefile \
src/stochastic/Makefile \
src/power/Makefile \
src/ring/Makefile \
src/string/Makefile \
src/pulsar/Makefile \
src/pulsar/FDS_isolated/Makefile \
src/pulsar/Injections/Makefile \
src/pulsar/hough/Makefile \
src/pulsar/hough/src/Makefile \
src/pulsar/SideBand/Makefile \
src/pulsar/CombSearch/Makefile \
src/pulsar/templateBanks/Makefile \
src/pulsar/TimingTests/Makefile \
src/pulsar/TDS_isolated/Makefile \
src/pulsar/CreateEphemeris/Makefile \
src/pulsar/Tools/Makefile \
src/frametools/Makefile \
src/hwinjection/Makefile \
src/inspiral/Makefile \
src/inspiral/posterior/Makefile \
src/inspiral/posterior/SPINspiral/Makefile \
src/inspiral/posterior/mpi/Makefile \
src/pulsar/hough/src2/Makefile \
src/lalapps/LALAppsVCSInfo.c \
src/lalapps/LALAppsVCSInfo.h \
src/lalapps/Makefile \
src/online/Makefile \
src/power/Makefile \
src/pulsar/CombSearch/Makefile \
src/pulsar/CreateEphemeris/Makefile \
src/pulsar/FDS_isolated/Makefile \
src/pulsar/GCT/Makefile \
src/pulsar/Injections/Makefile \
src/pulsar/MakeSFTs/Makefile \
src/pulsar/Makefile \
src/pulsar/SFTReferenceLibrary/Makefile \
src/pulsar/SideBand/Makefile \
src/pulsar/TDS_isolated/Makefile \
src/pulsar/TimingTests/Makefile \
src/pulsar/Tools/Makefile \
src/pulsar/TwoSpect/Makefile \
src/pulsar/crosscorr/Makefile \
src/pulsar/fscan/Makefile \
src/pulsar/TwoSpect/Makefile \
src/pulsar/SFTReferenceLibrary/Makefile \
src/pulsar/hough/Makefile \
src/pulsar/hough/src/Makefile \
src/pulsar/hough/src2/Makefile \
src/pulsar/templateBanks/Makefile \
src/ring/Makefile \
src/stochastic/Makefile \
src/string/Makefile \
src/tracksearch/Makefile \
src/online/Makefile \
src/hwinjection/Makefile \
])
# FIXME: -Wno-unsupported is a hack which silences warnings regarding
# subdir-objects in automake-1.14+. this will be the default, and only,
...
...
lalburst/configure.ac
View file @
4c66c0ad
...
...
@@ -5,20 +5,20 @@ AC_CONFIG_SRCDIR([src/EPSearch.c])
AC_CONFIG_AUX_DIR([gnuscripts])
AC_CONFIG_MACRO_DIR([gnuscripts])
AC_CONFIG_FILES([ \
lalburst.spec \
lalburst.pc \
Makefile \
debian/Makefile \
include/Makefile \
include/lal/Makefile \
src/LALBurstVCSInfo.c \
src/LALBurstVCSInfo.h \
src/Makefile \
lalburst.pc \
lalburst.spec \
python/Makefile \
python/lalburst/Makefile \
python/lalburst/__init__.py \
src/LALBurstVCSInfo.c \
src/LALBurstVCSInfo.h \
src/Makefile \
swig/Makefile \
test/Makefile
test/Makefile
\
])
AM_INIT_AUTOMAKE([1.11 foreign subdir-objects color-tests parallel-tests])
...
...
laldetchar/configure.ac
View file @
4c66c0ad
...
...
@@ -5,23 +5,23 @@ AC_CONFIG_SRCDIR([src/LALDetChar.h])
AC_CONFIG_AUX_DIR([gnuscripts])
AC_CONFIG_MACRO_DIR([gnuscripts])
AC_CONFIG_FILES([ \
laldetchar.spec \
laldetchar.pc \
Makefile \
debian/Makefile \
include/Makefile \
include/lal/Makefile \
src/LALDetCharVCSInfo.c \
src/LALDetCharVCSInfo.h \
src/Makefile \
laldetchar.pc \
laldetchar.spec \
python/Makefile \
python/laldetchar/Makefile \
python/laldetchar/__init__.py \
python/laldetchar/triggers/Makefile \
python/laldetchar/hveto/Makefile \
python/laldetchar/idq/Makefile \
python/laldetchar/triggers/Makefile \
src/LALDetCharVCSInfo.c \
src/LALDetCharVCSInfo.h \
src/Makefile \
swig/Makefile \
test/Makefile
test/Makefile
\
])
AM_INIT_AUTOMAKE([1.11 foreign subdir-objects color-tests parallel-tests])
...
...
lalframe/configure.ac
View file @
4c66c0ad
...
...
@@ -5,21 +5,21 @@ AC_CONFIG_SRCDIR([src/LALFrameIO.c])
AC_CONFIG_AUX_DIR([gnuscripts])
AC_CONFIG_MACRO_DIR([gnuscripts])
AC_CONFIG_FILES([ \
lalframe.spec \
lalframe.pc \
Makefile \
debian/Makefile \
include/Makefile \
include/lal/Makefile \
src/LALFrameVCSInfo.c \
src/LALFrameVCSInfo.h \
src/Makefile \
lalframe.pc \
lalframe.spec \
python/Makefile \
python/lalframe/Makefile \
python/lalframe/__init__.py \
python/lalframe/utils/Makefile \
src/LALFrameVCSInfo.c \
src/LALFrameVCSInfo.h \
src/Makefile \
swig/Makefile \
test/Makefile
test/Makefile
\
])
AM_INIT_AUTOMAKE([1.11 foreign subdir-objects color-tests parallel-tests])
...
...
lalinference/configure.ac
View file @
4c66c0ad
...
...
@@ -5,19 +5,19 @@ AC_CONFIG_SRCDIR([src/LALInference.h])
AC_CONFIG_AUX_DIR([gnuscripts])
AC_CONFIG_MACRO_DIR([gnuscripts])
AC_CONFIG_FILES([ \
lalinference.spec \
lalinference.pc \
Makefile \
debian/Makefile \
include/Makefile \
include/lal/Makefile \
src/LALInferenceVCSInfo.c \
src/LALInferenceVCSInfo.h \
src/Makefile \
lalinference.pc \
lalinference.spec \
python/Makefile \
python/lalinference/Makefile \
python/lalinference/__init__.py \
python/lalinference/bayestar/Makefile \
src/LALInferenceVCSInfo.c \
src/LALInferenceVCSInfo.h \
src/Makefile \
swig/Makefile \
test/Makefile \
])
...
...
lalinspiral/configure.ac
View file @
4c66c0ad
...
...
@@ -5,21 +5,21 @@ AC_CONFIG_SRCDIR([src/LALInspiral.h])
AC_CONFIG_AUX_DIR([gnuscripts])
AC_CONFIG_MACRO_DIR([gnuscripts])
AC_CONFIG_FILES([ \
lalinspiral.spec \
lalinspiral.pc \
Makefile \
debian/Makefile \
include/Makefile \
include/lal/Makefile \
src/LALInspiralVCSInfo.c \
src/LALInspiralVCSInfo.h \
src/Makefile \
lalinspiral.pc \
lalinspiral.spec \
python/Makefile \
python/lalinspiral/Makefile \
python/lalinspiral/__init__.py \
python/lalinspiral/sbank/Makefile \
src/LALInspiralVCSInfo.c \
src/LALInspiralVCSInfo.h \
src/Makefile \
swig/Makefile \
test/Makefile
test/Makefile
\
])
AM_INIT_AUTOMAKE([1.11 foreign subdir-objects color-tests parallel-tests])
...
...
lalmetaio/configure.ac
View file @
4c66c0ad
...
...
@@ -5,12 +5,12 @@ AC_CONFIG_SRCDIR([src/LIGOLwXML.c])
AC_CONFIG_AUX_DIR([gnuscripts])
AC_CONFIG_MACRO_DIR([gnuscripts])
AC_CONFIG_FILES([ \
lalmetaio.spec \
lalmetaio.pc \
Makefile \
debian/Makefile \
include/Makefile \
include/lal/Makefile \
lalmetaio.pc \
lalmetaio.spec \
python/Makefile \
python/lalmetaio/Makefile \
python/lalmetaio/__init__.py \
...
...
lalpulsar/configure.ac
View file @
4c66c0ad
...
...
@@ -5,20 +5,20 @@ AC_CONFIG_SRCDIR([src/ComputeFstat.c])
AC_CONFIG_AUX_DIR([gnuscripts])
AC_CONFIG_MACRO_DIR([gnuscripts])
AC_CONFIG_FILES([ \
lalpulsar.spec \
lalpulsar.pc \
Makefile \
debian/Makefile \
include/Makefile \
include/lal/Makefile \
src/LALPulsarVCSInfo.c \
src/LALPulsarVCSInfo.h \
src/Makefile \
lalpulsar.pc \
lalpulsar.spec \
python/Makefile \
python/lalpulsar/Makefile \
python/lalpulsar/__init__.py \
src/LALPulsarVCSInfo.c \
src/LALPulsarVCSInfo.h \
src/Makefile \
swig/Makefile \
test/Makefile
test/Makefile
\
])
AM_INIT_AUTOMAKE([1.11 foreign subdir-objects color-tests parallel-tests])
...
...
lalsimulation/configure.ac
View file @
4c66c0ad
...
...
@@ -5,20 +5,20 @@ AC_CONFIG_SRCDIR([src/LALSimulation.c])
AC_CONFIG_AUX_DIR([gnuscripts])
AC_CONFIG_MACRO_DIR([gnuscripts])
AC_CONFIG_FILES([ \
lalsimulation.spec \
lalsimulation.pc \
Makefile \
debian/Makefile \
include/Makefile \
include/lal/Makefile \
src/LALSimulationVCSInfo.c \
src/LALSimulationVCSInfo.h \
src/Makefile \
lalsimulation.pc \
lalsimulation.spec \
python/Makefile \
python/lalsimulation/Makefile \
python/lalsimulation/__init__.py \
src/LALSimulationVCSInfo.c \
src/LALSimulationVCSInfo.h \
src/Makefile \
swig/Makefile \
test/Makefile
test/Makefile
\
])
AM_INIT_AUTOMAKE([1.11 foreign subdir-objects color-tests parallel-tests])
...
...
lalstochastic/configure.ac
View file @
4c66c0ad
...
...
@@ -5,12 +5,12 @@ AC_CONFIG_SRCDIR([src/StochasticOmegaGW.c])
AC_CONFIG_AUX_DIR([gnuscripts])
AC_CONFIG_MACRO_DIR([gnuscripts])
AC_CONFIG_FILES([ \
lalstochastic.spec \
lalstochastic.pc \
Makefile \
debian/Makefile \
include/Makefile \
include/lal/Makefile \
lalstochastic.pc \
lalstochastic.spec \
python/Makefile \
python/lalstochastic/Makefile \
python/lalstochastic/__init__.py \
...
...
@@ -18,7 +18,7 @@ AC_CONFIG_FILES([ \
src/LALStochasticVCSInfo.h \
src/Makefile \
swig/Makefile \
test/Makefile
test/Makefile
\
])
AM_INIT_AUTOMAKE([1.11 foreign subdir-objects color-tests parallel-tests])
...
...
lalxml/configure.ac
View file @
4c66c0ad
...
...
@@ -5,20 +5,20 @@ AC_CONFIG_SRCDIR([src/LALXML.c])
AC_CONFIG_AUX_DIR([gnuscripts])
AC_CONFIG_MACRO_DIR([gnuscripts])
AC_CONFIG_FILES([ \
lalxml.spec \
lalxml.pc \
Makefile \
debian/Makefile \
include/Makefile \
include/lal/Makefile \
src/LALXMLVCSInfo.c \
src/LALXMLVCSInfo.h \
src/Makefile \
lalxml.pc \
lalxml.spec \
python/Makefile \
python/lalxml/Makefile \
python/lalxml/__init__.py \
src/LALXMLVCSInfo.c \
src/LALXMLVCSInfo.h \
src/Makefile \
swig/Makefile \
test/Makefile
test/Makefile
\
])
AM_INIT_AUTOMAKE([1.11 foreign subdir-objects color-tests parallel-tests])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment