Lines Matching +full:- +full:- +full:output +full:- +full:lib
1 $!------------------------------------------------------------------------------
13 $ if f$search("[---.zlib]zlib.h").nes."" then zpath = "[---.zlib]"
14 $ if f$search("[--]png.h").nes."" then pngpath = "[--]"
16 $ if f$search("[-.zlib]zlib.h").nes."" then zpath = "[-.zlib]"
17 $ if f$search("[-.libpng]png.h").nes."" then pngpath = "[-.libpng]"
21 $ write sys$output "zlib include not found. Exiting..."
27 $ write sys$output "libpng include not found. Exiting..."
56 $ open/write lopt lib.opt
57 $ write lopt "''pngpath'libpng.olb/lib"
58 $ write lopt "''zpath'libz.olb/lib"
66 $ write sys$output "Compiling PNG book programs ..."
67 $ CALL MAKE readpng.OBJ "cc ''CCOPT' readpng" -
69 $ CALL MAKE readpng2.OBJ "cc ''CCOPT' readpng2" -
71 $ CALL MAKE writepng.OBJ "cc ''CCOPT' writepng" -
73 $ write sys$output "Building rpng-x..."
74 $ CALL MAKE rpng-x.OBJ "cc ''CCOPT' rpng-x" -
75 rpng-x.c readpng.h
76 $ call make rpng-x.exe -
77 "LINK rpng-x,readpng,lib.opt/opt,x11.opt/opt" -
78 rpng-x.obj readpng.obj
79 $ write sys$output "Building rpng2-x..."
80 $ CALL MAKE rpng2-x.OBJ "cc ''CCOPT' rpng2-x" -
81 rpng2-x.c readpng2.h
82 $ call make rpng2-x.exe -
83 "LINK rpng2-x,readpng2,lib.opt/opt,x11.opt/opt" -
84 rpng2-x.obj readpng2.obj
85 $ write sys$output "Building wpng..."
86 $ CALL MAKE wpng.OBJ "cc ''CCOPT' wpng" -
88 $ call make wpng.exe -
89 "LINK wpng,writepng,lib.opt/opt" -
98 $! P3 - P8 What it depends on
127 $ write sys$output P2