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