
#ifdef SunArchitecture
CC = gcc
CCOPTIONS =
CDEBUGFLAGS = -O2
#endif

XCOMM Shared memory support works OK on x86 linux, not tested elsewhere but
XCOMM seems to cause problems on Digital Unix.

#if defined(i386Architecture) && defined(LinuxArchitecture)
DEFINES = -DMITSHM
#endif

SRCS = args.c listen.c rfbproto.c sockets.c vncviewer.c x.c
OBJS = args.o listen.o rfbproto.o sockets.o vncviewer.o x.o
INCLUDES = -I../include -I.
VNCAUTH_LIB = ../libvncauth/libvncauth.a

all:: vncviewer

NormalProgramTarget(vncviewer,$(OBJS),$(DEPXLIB) $(VNCAUTH_LIB),$(XLIB) $(VNCAUTH_LIB) $(LIBS),)

DependTarget()
