mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
18 lines
1.1 KiB
Plaintext
Executable File
18 lines
1.1 KiB
Plaintext
Executable File
if (!($?CCHOME)) setenv CCHOME "/usr/bin/g++ "
|
|
if (!($?CCFLAGS)) setenv CCFLAGS " -fPIC -DLIN -DLININTEL -DCSFDB -DNO_EXCEPTION -funsigned-char -Wall -O3 -DNDEBUG -DNo_Exception "
|
|
|
|
if (!($?CCINC)) setenv CCINC "."
|
|
|
|
if (!($?STLPortHome)) then
|
|
setenv STLPortInclude "."
|
|
else
|
|
if (!($?STLPortInclude)) setenv STLPortInclude "$STLPortHome/stlport"
|
|
endif
|
|
|
|
if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportPackage)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportPackage
|
|
if (!(-e ${SAMPLE_ROOT}/${STATION}/obj/.tmp)) mkdir -p ${SAMPLE_ROOT}/${STATION}/obj/.tmp
|
|
if (!(-e ${SAMPLE_ROOT}/${STATION}/lib)) mkdir -p ${SAMPLE_ROOT}/${STATION}/lib
|
|
|
|
|
|
${CCHOME} ${CCFLAGS} -I${STLPortInclude} -I${CCINC} -I${JAVAHOME}/include -I${JAVAHOME}/include/linux -DHAVE_WOK_CONFIG_H -DHAVE_CONFIG_H -I${SAMPLE_ROOT}/inc -I${SAMPLE_ROOT}/drv/SampleImportExportPackage/. -I${CASROOT}/inc -I${CASROOT}/src/WOKTclLib -c ${SAMPLE_ROOT}/src/SampleImportExportPackage/SampleImportExportPackage.cxx -o ${SAMPLE_ROOT}/${STATION}/obj/SampleImportExportPackage/SampleImportExportPackage.o
|