1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 17:25:37 +01:00

Convenience script to build the list of headers and .cc files in the library

This commit is contained in:
Peter Boyle 2015-06-03 12:47:46 +01:00
parent f9b070d64d
commit 54b56959f5

9
scripts/filelist Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
cd lib
HFILES=`find . -type f -name '*.h'`
CCFILES=`find . -type f -name '*.cc' -not -name '*ommunicator*.cc'`
echo HFILES=$HFILES > Make.inc
echo >> Make.inc
echo CCFILES=$CCFILES >> Make.inc
cd ..