Makefile.in 6.99 KB
Newer Older
1 2
############################################################################
#                                                                          #
3
#  Copyright (c) 2001, 2010 NoMachine, http://www.nomachine.com/.          #
4 5 6 7 8 9 10 11
#                                                                          #
#  NXCOMP, 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.        #
#                                                                          #
12
#  NX and NoMachine are trademarks of Medialogic S.p.A.                    #
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
#                                                                          #
#  All rights reserved.                                                    #
#                                                                          #
############################################################################

#
# Get these values from the configure script. The
# version printed by the program should be derived
# from the CHANGELOG. For example we may use the
# following command:
#
# head -n 3 CHANGELOG | grep 'nxcomp-' | cut -d '-' -f 2-3
#

VERSION=@VERSION@
LIBVERSION=@LIBVERSION@

#
# We would really like to enable all warnings, -Wredundant-decls,
# though, gives a warning caused by pthread.h and unistd.h and
# GCC 3.4 was changed in a way that it now complains about some
# of the -W directives we used before (-Wmissing-declarations,
# -Wnested-externs, -Wstrict-prototypes and -Wmissing-prototypes).
#

CXX         = @CXX@
CXXFLAGS    = @CXXFLAGS@ @X_CFLAGS@ @DEFS@ \
              -Wall -Wpointer-arith
CXXINCLUDES =
CXXDEFINES  =

#
# C programs have their own CFLAGS.
# 

CC          = @CC@
CCFLAGS     = @CFLAGS@ @X_CFLAGS@ @DEFS@ \
              -Wall -Wpointer-arith
CCINCLUDES  =
CCDEFINES   =

LDFLAGS     = @LDFLAGS@
LIBS        = @LIBS@

#
# Other autoconfigured settings, not used at the moment.
#

srcdir      = @srcdir@
prefix      = @prefix@
exec_prefix = @exec_prefix@
bindir      = @bindir@
man1dir     = @mandir@/man1
VPATH       = @srcdir@

INSTALL         = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA    = @INSTALL_DATA@

#
# This should be autodetected.
#

MAKEDEPEND     = @MAKEDEPEND@
DEPENDINCLUDES = -I/usr/include/c++ -I/usr/include/g++ -I/usr/include/g++-3 

.SUFFIXES: .cpp.c

.cpp.o:
	$(CXX) -c $(CXXFLAGS) $(CXXINCLUDES) $(CXXDEFINES) $<
.c.o:
	$(CC) -c $(CCFLAGS) $(CCINCLUDES) $(CCDEFINES) $<

LIBRARY = Xcomp

LIBNAME    = lib$(LIBRARY)
LIBFULL    = lib$(LIBRARY).so.$(VERSION)
LIBLOAD    = lib$(LIBRARY).so.$(LIBVERSION)
LIBSHARED  = lib$(LIBRARY).so
LIBARCHIVE = lib$(LIBRARY).a

LIBCYGSHARED  = cyg$(LIBRARY).dll
LIBCYGARCHIVE = lib$(LIBRARY).dll.a

all: depend @ALL@

MSRC   =

CSRC   = MD5.c					\
	 Pack.c					\
         Vars.c

CXXSRC = Loop.cpp 				\
	 Children.cpp				\
	 Control.cpp				\
	 Misc.cpp				\
	 Socket.cpp				\
	 Fork.cpp				\
	 Pipe.cpp				\
	 List.cpp				\
	 Keeper.cpp				\
	 Timestamp.cpp				\
	 Transport.cpp				\
	 Statistics.cpp				\
	 Auth.cpp				\
	 Agent.cpp				\
	 Proxy.cpp				\
	 Channel.cpp				\
	 Message.cpp				\
	 Split.cpp				\
	 ClientProxy.cpp			\
	 ServerProxy.cpp			\
	 OpcodeStore.cpp			\
	 ClientStore.cpp			\
	 ServerStore.cpp			\
	 ChannelCache.cpp			\
	 ClientCache.cpp			\
	 ServerCache.cpp			\
	 ClientChannel.cpp			\
	 ServerChannel.cpp			\
	 GenericChannel.cpp			\
	 ReadBuffer.cpp				\
	 ProxyReadBuffer.cpp			\
	 ClientReadBuffer.cpp			\
	 ServerReadBuffer.cpp			\
	 GenericReadBuffer.cpp			\
	 EncodeBuffer.cpp			\
	 DecodeBuffer.cpp			\
	 WriteBuffer.cpp			\
	 SequenceQueue.cpp			\
	 IntCache.cpp				\
	 CharCache.cpp				\
	 XidCache.cpp				\
	 ActionCache.cpp			\
	 BlockCache.cpp				\
	 BlockCacheSet.cpp			\
	 StaticCompressor.cpp			\
	 TextCompressor.cpp			\
	 Unpack.cpp				\
	 Alpha.cpp				\
	 Colormap.cpp				\
	 Jpeg.cpp				\
	 Pgn.cpp				\
	 Bitmap.cpp				\
	 Rgb.cpp				\
	 Rle.cpp				\
	 Z.cpp					\
	 ChangeProperty.cpp			\
	 SendEvent.cpp				\
	 ChangeGC.cpp				\
	 CreateGC.cpp				\
	 CreatePixmap.cpp			\
	 SetClipRectangles.cpp			\
	 CopyArea.cpp				\
	 PolyLine.cpp				\
	 PolySegment.cpp			\
	 PolyFillRectangle.cpp			\
	 PutImage.cpp				\
	 TranslateCoords.cpp			\
	 GetImage.cpp				\
	 ClearArea.cpp				\
	 ConfigureWindow.cpp			\
	 PolyText8.cpp				\
	 PolyText16.cpp				\
	 ImageText8.cpp				\
	 ImageText16.cpp			\
	 PolyPoint.cpp				\
	 PolyFillArc.cpp			\
	 PolyArc.cpp				\
	 FillPoly.cpp				\
	 InternAtom.cpp				\
	 GetProperty.cpp			\
	 SetUnpackGeometry.cpp			\
	 SetUnpackColormap.cpp			\
	 SetUnpackAlpha.cpp			\
	 PutPackedImage.cpp			\
	 ShapeExtension.cpp			\
	 RenderExtension.cpp			\
	 GenericRequest.cpp			\
	 QueryFontReply.cpp			\
	 ListFontsReply.cpp			\
	 GetImageReply.cpp			\
	 GetPropertyReply.cpp			\
	 GenericReply.cpp			\
	 RenderGenericRequest.cpp		\
	 RenderCreatePicture.cpp		\
	 RenderChangePicture.cpp		\
	 RenderFreePicture.cpp			\
	 RenderPictureClip.cpp			\
	 RenderPictureTransform.cpp		\
	 RenderPictureFilter.cpp		\
	 RenderCreateGlyphSet.cpp		\
	 RenderFreeGlyphSet.cpp			\
	 RenderAddGlyphs.cpp			\
	 RenderComposite.cpp			\
	 RenderCompositeGlyphs.cpp		\
	 RenderFillRectangles.cpp		\
	 RenderTrapezoids.cpp			\
	 RenderTriangles.cpp			\
	 PositionCacheCompat.cpp		\
	 ChangeGCCompat.cpp			\
	 CreatePixmapCompat.cpp			\
	 SetUnpackColormapCompat.cpp		\
	 SetUnpackAlphaCompat.cpp		\
	 RenderCreatePictureCompat.cpp		\
	 RenderFreePictureCompat.cpp		\
	 RenderPictureClipCompat.cpp		\
	 RenderCreateGlyphSetCompat.cpp		\
	 RenderCompositeCompat.cpp		\
	 RenderCompositeGlyphsCompat.cpp

MOBJ   = $(MSRC:.c=.o)
COBJ   = $(CSRC:.c=.o)
CXXOBJ = $(CXXSRC:.cpp=.o)

$(LIBFULL):	 $(CXXOBJ) $(COBJ)
		 $(CXX) -o $@ $(LDFLAGS) $(CXXOBJ) $(COBJ) $(LIBS)

$(LIBLOAD):	 $(LIBFULL)
		 rm -f $(LIBLOAD)
		 ln -s $(LIBFULL) $(LIBLOAD)

$(LIBSHARED):	 $(LIBFULL)
		 rm -f $(LIBSHARED)
		 ln -s $(LIBFULL) $(LIBSHARED)

$(LIBARCHIVE):	 $(CXXOBJ) $(COBJ)
		 rm -f  $(LIBARCHIVE)
		 ar clq $(LIBARCHIVE) $(CXXOBJ) $(COBJ)
		 ranlib $(LIBARCHIVE)

$(LIBCYGSHARED): $(LIBARCHIVE)
		 $(CC) -shared -o $(LIBCYGSHARED) \
		 -Wl,--out-implib=$(LIBCYGARCHIVE) \
		 -Wl,--export-all-symbols \
		 -Wl,--enable-auto-import \
		 -Wl,--whole-archive $(LIBARCHIVE) \
		 -Wl,--no-whole-archive $(LIBS) \
		 $(LDFLAGS)

$(LIBCYGARCHIVE): $(LIBCYGSHARED)

depends:	depend.status

depend:		depend.status

depend.status:	
		if [ -x $(MAKEDEPEND) ] ; then \
			$(MAKEDEPEND) $(CXXINCLUDES) $(CCINCLUDES) \
                        $(DEPENDINCLUDES) -f Makefile $(MSRC) $(CSRC) \
			$(CXXSRC) 2>/dev/null; \
		fi
		touch depend.status

Mike Gabriel's avatar
Mike Gabriel committed
267
install:	install.bin install.man
268 269 270 271 272 273 274 275 276 277 278

install.bin:

install.man:

clean:
		-rm -f *~ *.o *.bak *.orig *.rej st?????? core core.* *.out.* \
		@ALL@

distclean:	clean
		-rm -rf autom4te.cache config.status config.log \
Mike Gabriel's avatar
Mike Gabriel committed
279
		config.cache depend.status Makefile tags