blob: 077ad0a1cbe892c2e46a91dc415a093c9ab76a46 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
--- vncviewer/Imakefile.orig Wed Oct 11 23:53:21 2000
+++ vncviewer/Imakefile Wed Nov 20 22:16:14 2002
@@ -8,9 +8,9 @@
#if defined(HPArchitecture)
INCLUDES = -I/usr/include/X11R6 -I/usr/contrib/X11R6/include \
- -I../include -I. -I../zlib
+ -I../include -I. -I/usr/local/include
#else
-INCLUDES = -I../include -I. -I../zlib
+INCLUDES = -I../include -I. -I/usr/local/include
#endif
#if defined(AIXArchitecture)
@@ -18,9 +18,9 @@
#endif
VNCAUTH_LIB = ../libvncauth/libvncauth.a
-ZLIB_LIB = ../zlib/libz.a
+ZLIB_LIB = -lz
-DEPLIBS = XawClientDepLibs $(VNCAUTH_LIB) $(ZLIB_LIB)
+DEPLIBS = XawClientDepLibs $(VNCAUTH_LIB)
LOCAL_LIBRARIES = XawClientLibs $(VNCAUTH_LIB) $(ZLIB_LIB) $(LOCAL_LIBPATH_OPTION)
SRCS = \
@@ -41,4 +41,4 @@
OBJS = $(SRCS:.c=.o)
-ComplexProgramTarget(vncviewer)
+ComplexProgramTargetNoMan(vncviewer)
|