Skip to content
Snippets Groups Projects
Commit 495795c2 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

*** empty log message ***

parent f16a76b4
No related branches found
No related tags found
No related merge requests found
{
printf("%s \n", $0);
}
#!/bin/bash -
for A in $*
do
echo modifying $A
awk -f unix2dos.awk $A > $A.XXX
/bin/rm -f $A
mv $A.XXX $A
done
...@@ -10,14 +10,15 @@ ...@@ -10,14 +10,15 @@
# Define this is you use the native Windows shell # Define this is you use the native Windows shell
# #
MAKE=C:/src/gmsh/utils/misc/gmake.exe MAKE=E:/src/gmsh/utils/misc/gmake.exe
UNAME=WIN32MSVC UNAME=WIN32MSVC
RM=erase RM=erase
MV=move MV=move
# Define this if you use the bash shell in cygwin # Define this if you use the bash shell in cygwin
# #
# Launch compilation with: # If you don't have all MSVC variables defined you can use this to compile:
#
# cmd.exe /c "vcvars32.bat && make" # cmd.exe /c "vcvars32.bat && make"
# #
MAKE=make MAKE=make
...@@ -37,17 +38,17 @@ ENABLE_OCC=1 ...@@ -37,17 +38,17 @@ ENABLE_OCC=1
ENABLE_MED=1 ENABLE_MED=1
# If you selected ENABLE_GSL, specify where the GSL is installed # If you selected ENABLE_GSL, specify where the GSL is installed
GSL_PREFIX=C:/src/gsl-1.8 GSL_PREFIX=E:/src/gsl-1.8
# If you selected ENABLE_GUI, specify where FLTK is installed # If you selected ENABLE_GUI, specify where FLTK is installed
FLTK_PREFIX=C:/src/fltk-1.1.9 FLTK_PREFIX=E:/src/fltk-1.1.9
# If you selected ENABLE_OCC, specify where OpenCASCADE is insalled # If you selected ENABLE_OCC, specify where OpenCASCADE is insalled
OCC_PREFIX=C:/src/OpenCASCADE6.3.0/ros OCC_PREFIX=E:/src/OpenCASCADE6.3.0/ros
# If you selected ENABLE_MED, specify where MED and HDF5 are installed # If you selected ENABLE_MED, specify where MED and HDF5 are installed
MED_PREFIX=C:/src/med-2.3.4 MED_PREFIX=E:/src/med-2.3.4
HDF5_PREFIX=C:/src/hdf5-1.6.6 HDF5_PREFIX=E:/src/hdf5-1.6.6
################################################################## ##################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment