You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile.in 845B

123456789101112131415161718192021222324252627282930313233
  1. PACKAGE = @PACKAGE@
  2. VERSION = @VERSION@
  3. prefix = @prefix@
  4. datadir = @datadir@
  5. localedir = $(datadir)/locale
  6. SRCS = DesktopWindow.cxx CConn.cxx vncviewer.cxx
  7. OBJS = $(SRCS:.cxx=.o)
  8. program = vncviewer
  9. DEP_LIBS = $(TOP)/tx/libtx.a \
  10. $(COMMON)/rfb/librfb.a \
  11. $(COMMON)/network/libnetwork.a \
  12. $(COMMON)/rdr/librdr.a
  13. EXTRA_LIBS = @ZLIB_LIB@ @JPEG_LIB@ @X_PRE_LIBS@ @X_LIBS@ -lXext -lX11 \
  14. @X_EXTRA_LIBS@ @CL_LIB@ @DMEDIA_LIB@ @LIBINTL@
  15. DIR_CPPFLAGS = -I$(COMMON) -I$(TOP) -I$(TOP)/tx -I$(TOP)/intl -DLOCALEDIR=\"$(localedir)\" @X_CFLAGS@ # X_CFLAGS are really CPPFLAGS
  16. all:: $(program)
  17. $(program): $(OBJS) buildtime.o $(DEP_LIBS)
  18. rm -f $(program)
  19. $(CXXLD) $(CXXFLAGS) $(LDFLAGS) -o $@ $(OBJS) buildtime.o $(DEP_LIBS) $(LIBS) $(EXTRA_LIBS)
  20. buildtime.o: $(OBJS) $(DEP_LIBS)
  21. # followed by boilerplate.mk