Changeset 35 for branches/watcom_ant17_java141/src
- Timestamp:
- Nov 17, 2007, 7:32:21 PM (18 years ago)
- Location:
- branches/watcom_ant17_java141/src/plugins/org.eclipse.swt/Eclipse SWT PI/pm/library
- Files:
-
- 2 added
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/watcom_ant17_java141/src/plugins/org.eclipse.swt/Eclipse SWT PI/pm/library/build.cmd
r14 r35 6 6 rem http://www.eclipse.org/legal/cpl-v10.html 7 7 8 if NOT "%1" == "" set MAKE_TARGET=%1 9 10 if NOT "%BUILD_ENV%"=="OPENWATCOM" goto VAC4 11 12 set MAKE=wmake 13 set MAKE_FILE=openwatcom 14 set INCLUDE=D:\WATCOM\h;D:\WATCOM\h\os2 15 if "%MAKE_TARGET%" == "clean" set MAKE_TARGET=-c %MAKE_TARGET% 16 17 goto RUNMAKE 18 19 :VAC4 20 8 21 if "%VACPPMAIN%"=="" goto NOVAC 9 22 10 23 call %VACPPMAIN%\bin\setenv.cmd 11 set INCLUDE=..\..\..\Eclipse SWT\common\library;%INCLUDE%12 nmake -f make_os2.mak %1 %2 %3 %4 %5 %6 %7 %8 %9 13 goto END24 set MAKE=nmake 25 set MAKE_FILE=vac4 26 goto RUNMAKE 14 27 15 28 :NOVAC … … 19 32 echo Possibly, Visual Age C/C++ 4.0 is not installed. 20 33 echo. 34 goto END 35 36 :RUNMAKE 37 38 set COMMON_DIR=..\..\..\Eclipse SWT\common\library 39 set JNI_DIR=%JAVA_HOME%\include;%JAVA_HOME%\include\os2 40 set INCLUDE=%COMMON_DIR%;%JNI_DIR%;%INCLUDE% 41 %MAKE% -f make_%MAKE_FILE%.mak %MAKE_TARGET% %2 %3 %4 %5 %6 %7 %8 %9 21 42 22 43 :END -
branches/watcom_ant17_java141/src/plugins/org.eclipse.swt/Eclipse SWT PI/pm/library/make_os2.mak
r14 r35 27 27 SWT_LOCATION = ..\..\..\..\org.eclipse.swt.pm\os\os2\x86 28 28 29 all:30 @set SWT_LIB=$(SWT_LIB)31 vacbld make_os2.icc32 copy $(SWT_LIB) $(SWT_LOCATION)33 34 clean:35 -del *.obj *.res *.dll *.lib *.ics $(SWT_LOCATION)\*.dll
Note:
See TracChangeset
for help on using the changeset viewer.