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.am 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. bin_PROGRAMS = vncviewer
  2. HDRS = \
  3. CConn.h \
  4. CConnOptions.h \
  5. CConnThread.h \
  6. ConnectingDialog.h \
  7. ConnectionDialog.h \
  8. DesktopWindow.h \
  9. InfoDialog.h \
  10. ListenServer.h \
  11. ListenTrayIcon.h \
  12. MRU.h \
  13. OptionsDialog.h \
  14. resource.h \
  15. UserPasswdDialog.h \
  16. ViewerToolBar.h
  17. vncviewer_SOURCES = $(HDRS) \
  18. buildTime.cxx \
  19. CConn.cxx \
  20. CConnOptions.cxx \
  21. CConnThread.cxx \
  22. ConnectingDialog.cxx \
  23. ConnectionDialog.cxx \
  24. DesktopWindow.cxx \
  25. InfoDialog.cxx \
  26. OptionsDialog.cxx \
  27. UserPasswdDialog.cxx \
  28. ViewerToolBar.cxx \
  29. vncviewer.cxx
  30. vncviewer_CPPFLAGS = -I$(top_srcdir)/common -I$(top_srcdir)/win
  31. vncviewer_LDADD = $(top_builddir)/common/rfb/librfb.la \
  32. $(top_builddir)/win/rfb_win32/librfb_win32.la \
  33. $(top_builddir)/common/Xregion/libXregion.la \
  34. $(top_builddir)/common/network/libnetwork.la \
  35. $(top_builddir)/common/rdr/librdr.la \
  36. resources.o -lws2_32 -lgdi32 -luser32 -lcomctl32 -lversion -lcomdlg32
  37. vncviewer_LDFLAGS = -I$(top_srcdir)/win -mwindows
  38. EXTRA_DIST = vncviewer.rc vncviewer.ico cursor1.cur vncviewer.exe.manifest \
  39. vncviewer.exe.manifest64 vncviewer.bmp toolbar.bmp CMakeLists.txt
  40. resources.o: vncviewer.rc
  41. $(WINDRES) $^ -o $@