#!/bin/sh DIRLIST=". Source Source/Metadata Source/FreeImageToolkit Source/LibJPEG Source/LibPNG Source/LibTIFF4 Source/ZLib Source/LibOpenJPEG Source/OpenEXR Source/OpenEXR/Half Source/OpenEXR/Iex Source/OpenEXR/IlmImf Source/OpenEXR/IlmThread Source/OpenEXR/Imath Source/OpenEXR/IexMath Source/LibRawLite Source/LibRawLite/dcraw Source/LibRawLite/internal Source/LibRawLite/libraw Source/LibRawLite/src Source/LibWebP Source/LibJXR Source/LibJXR/common/include Source/LibJXR/image/sys Source/LibJXR/jxrgluelib" echo "VER_MAJOR = 3" > Makefile.srcs echo "VER_MINOR = 18.0" >> Makefile.srcs echo -n "SRCS = " >> Makefile.srcs for DIR in $DIRLIST; do VCPRJS=`echo $DIR/*.2013.vcxproj` if [ "$VCPRJS" != "$DIR/*.2013.vcxproj" ]; then egrep 'ClCompile Include=.*\.(c|cpp)' $DIR/*.2013.vcxproj | cut -d'"' -f2 | tr '\\' '/' | awk '{print "'$DIR'/"$0}' | tr '\r\n' ' ' | tr -s ' ' >> Makefile.srcs fi done echo >> Makefile.srcs echo -n "INCLS = " >> Makefile.srcs find . -name "*.h" -print | xargs echo >> Makefile.srcs echo >> Makefile.srcs echo -n "INCLUDE =" >> Makefile.srcs for DIR in $DIRLIST; do echo -n " -I$DIR" >> Makefile.srcs done echo >> Makefile.srcs