mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
10 lines
213 B
Plaintext
10 lines
213 B
Plaintext
|
#!/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 ..
|