mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
10 lines
213 B
Bash
Executable File
10 lines
213 B
Bash
Executable File
#!/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 ..
|