/**************************************************************************/
/*                                                                        */
/* Copyright (c) 2001,2003 NoMachine, http://www.nomachine.com.           */
/*                                                                        */
/* NXVIEWER, NX protocol compression and NX extensions to this software   */
/* are copyright of NoMachine. Redistribution and use of the present      */
/* software is allowed according to terms specified in the file LICENSE   */
/* which comes in the source distribution.                                */
/*                                                                        */
/* Check http://www.nomachine.com/licensing.html for applicability.       */
/*                                                                        */
/* NX and NoMachine are trademarks of Medialogic S.p.A.                   */
/*                                                                        */
/* All rights reserved.                                                   */
/*                                                                        */
/**************************************************************************/

#ifdef SunArchitecture
EXTRA_DEFINES = -D__EXTENSIONS__
#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


INCLUDES = -I../include -I. 

#ifdef SunArchitecture
INCLUDES = -I../include -I. -I/usr/include 
#endif

VNCAUTH_LIB = ../nxviewer/libvncauth.a

LOCAL_LIBRARIES = $(VNCAUTH_LIB) 


SRCS = \
  vncpasswd.c

OBJS = $(SRCS:.c=.o)

all:: $(OBJS)

ComplexProgramTarget(nxpasswd)

DependTarget()
