$!++ $! $! Copyright (C) 1990 $! DIGITAL Equipment Corporation, Maynard, Mass. $! $! This software is furnished under a license and may be used and copied $! only in accordance with the terms of such license and with the $! inclusion of the above copyright notice. This software or any other $! copies thereof may not be provided or otherwise made available to any $! other person. No title to or ownership of the software is hereby $! transferred. $! $! The information in this software is subject to change without notice $! and should not be construed as a commitment by DIGITAL Equipment $! Corporation. $! $! DIGITAL assumes no responsibility for the use or reliability of its $! software on equipment which is not supplied by DIGITAL. $! $!-- $ $!++ $! FACILITY: $! $! DECnet-Vax OSI IPC Example Programs $! $! ABSTRACT: $! $! This procedure builds the DECnet VAX OSI IPC example client and $! server programs, and the local node program, in the examples directory. $! $! AUTHOR: $! $! MwD $! $! CREATION DATE: Dec-1991 $! $! MODIFICATION HISTORY: $! $! X-00 MWD0000 MwD Dec-1991 $! Creation. $!-- $ $ $!+ $! Set privs so we can build under sys$examples... $!- $ $ if .NOT. f$privilege( "SYSPRV" ) $ then $ write sys$output "This procedure requires SYSPRV." $ goto EXIT $ endif $ $!+ $! Remember where we are, and set default to the examples directory. $!- $ cur_dir = f$environment( "DEFAULT" ) $ set default sys$common:[syshlp.examples.dnvosi] $ $!+ $! Compile the C modules. $!- $ cc/vaxc ipc_client $ cc/vaxc ipc_server $ cc/vaxc ipc_common $ cc/vaxc ipc_backtranslate $ $!+ $! Link the client and server images. $!- $ link ipc_client, ipc_common, sys$input/opt sys$share:vaxcrtl.exe/share $ $ link ipc_server, ipc_common, sys$input/opt sys$share:vaxcrtl.exe/share $ $!+ $! Link the backtranslate tool. $!- $ link ipc_backtranslate, ipc_common, sys$input/opt sys$share:vaxcrtl.exe/share $ $!+ $! Make the images world executable. $!- $ $ set file/prot=W:E ipc_*.exe $ $ set default 'cur_dir' $ $ EXIT: $ exit $! DEC/CMS REPLACEMENT HISTORY, Element IPC_BUILD.COM $! 2 13-JAN-1992 17:22:12 DANIELE "Use sys$sysroot, set sysprv, set .exes to w:e" $! 1 8-JAN-1992 15:31:53 DANIELE "Builds the IPC example client and server executables" $! DEC/CMS REPLACEMENT HISTORY, Element IPC_BUILD.COM