Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Added basic escape handling to v3_stream interactive mode
[palacios.git] / linux_usr / vnc / Makefile.in
1
2 SRCS = Image.cxx x0vncserver.cxx
3
4 OBJS = $(SRCS:.cxx=.o)
5
6 program = x0vncserver
7
8 DEP_LIBS = ../rfb/librfb.a ../network/libnetwork.a ../rdr/librdr.a
9
10 EXTRA_LIBS = @ZLIB_LIB@ @X_PRE_LIBS@ @X_LIBS@ -lXtst -lXext -lX11 @X_EXTRA_LIBS@
11
12 DIR_CPPFLAGS = -I$(top_srcdir) @X_CFLAGS@ # X_CFLAGS are really CPPFLAGS
13
14 all:: $(program)
15
16 $(program): $(OBJS) buildtime.o $(DEP_LIBS)
17         rm -f $(program)
18         $(CXXLD) $(CXXFLAGS) $(LDFLAGS) -o $@ $(OBJS) buildtime.o $(DEP_LIBS) $(LIBS) $(EXTRA_LIBS)
19
20 buildtime.o: $(OBJS) $(DEP_LIBS)
21
22 # followed by boilerplate.mk