Makefile.am 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. # Qt AWT backend for Classpath
  2. #
  3. ## GCJ LOCAL: don't install this library
  4. noinst_LTLIBRARIES = libqtpeer.la
  5. AM_LDFLAGS = @CLASSPATH_MODULE@ @QT_LIBS@
  6. AM_CPPFLAGS = @CLASSPATH_INCLUDES@
  7. ## GCJ LOCAL: add libstdc++-v3 include directories
  8. AM_CXXFLAGS = @QT_CFLAGS@ \
  9. -I$(top_builddir)/../../libstdc++-v3/include/$(target_alias) \
  10. -I$(top_builddir)/../../libstdc++-v3/include \
  11. -I$(top_srcdir)/../../libstdc++-v3/include \
  12. -I$(top_srcdir)/../../libstdc++-v3/libsupc++
  13. libqtpeer_la_MOC = \
  14. slotcallbacks.moc.h
  15. slotcallbacks.moc.h: slotcallbacks.cpp
  16. $(MOC) -o slotcallbacks.moc.h $(srcdir)/slotcallbacks.cpp
  17. nodist_libqtpeer_la_SOURCES = \
  18. $(libqtpeer_la_MOC)
  19. libqtpeer_la_SOURCES = \
  20. buttonevent.h \
  21. componentevent.cpp \
  22. componentevent.h \
  23. containers.h \
  24. eventmethods.h \
  25. keybindings.cpp \
  26. keybindings.h \
  27. mainqtthread.cpp \
  28. mainthreadinterface.cpp \
  29. mainthreadinterface.h \
  30. nativewrapper.cpp \
  31. nativewrapper.h \
  32. qmatrix.cpp \
  33. qpainterpath.cpp \
  34. qpen.cpp \
  35. qtaudioclip.cpp \
  36. qtbuttonpeer.cpp \
  37. qtcanvaspeer.cpp \
  38. qtcheckboxpeer.cpp \
  39. qtchoicepeer.cpp \
  40. qtcomponent.cpp \
  41. qtcomponent.h \
  42. qtcomponentpeer.cpp \
  43. qtdialogpeer.cpp \
  44. qtembeddedwindowpeer.cpp \
  45. qtfiledialogpeer.cpp \
  46. qtfont.h \
  47. qtfontmetrics.cpp \
  48. qtfontpeer.cpp \
  49. qtframepeer.cpp \
  50. qtgraphics.cpp \
  51. qtgraphics.h \
  52. qtimage.cpp \
  53. qtimage.h \
  54. qtlabelpeer.cpp \
  55. qtlistpeer.cpp \
  56. qtmenubarpeer.cpp \
  57. qtmenucomponentpeer.cpp \
  58. qtmenuitempeer.cpp \
  59. qtmenupeer.cpp \
  60. qtpanelpeer.cpp \
  61. qtpopupmenupeer.cpp \
  62. qtscreendevice.cpp \
  63. qtscrollbarpeer.cpp \
  64. qtscrollpanepeer.cpp \
  65. qtstrings.cpp \
  66. qtstrings.h \
  67. qttextareapeer.cpp \
  68. qttextfieldpeer.cpp \
  69. qttoolkit.cpp \
  70. qtvolatileimage.cpp \
  71. qtwindowpeer.cpp \
  72. slotcallbacks.cpp \
  73. slotcallbacks.h
  74. libqtpeer_la_LDFLAGS = $(AM_LDFLAGS) -avoid-version
  75. BUILT_SOURCES = $(libqtpeer_la_MOC)
  76. CLEANFILES = so_locations $(BUILT_SOURCES)