1 EXTRA_DIST = oprof_start.base.ui 2 3 if have_qt 4 5 AM_CPPFLAGS = @QT_INCLUDES@ 6 7 AM_CXXFLAGS = @OP_CXXFLAGS@ 8 9 noinst_LIBRARIES = liboprof_start.a 10 nodist_liboprof_start_a_SOURCES = oprof_start.base.cpp oprof_start.base.moc.cpp 11 12 oprof_start.base.h: oprof_start.base.ui 13 $(UIC) -o $@ $< 14 15 oprof_start.base.cpp: oprof_start.base.h oprof_start.base.ui 16 $(UIC) -o $@ -impl $^ 17 18 oprof_start.base.moc.cpp: oprof_start.base.h 19 $(MOC) -o $@ $< 20 21 clean-local: 22 rm -f oprof_start.base.h oprof_start.base.cpp oprof_start.base.moc.cpp 23 24 endif 25