AM_CXXFLAGS := $(CXXFLAGS) $(EXTRA_CXXFLAGS) -I../include $(QT_CXXFLAGS) \ -DQT_THREAD_SUPPORT \ -DPIXMAPS=\"$(datadir)/pixmaps\" \ -DETC=\"$(prefix)/etc/miav\" bin_PROGRAMS = miav miav_SOURCES = $(shell if [ $QT_CXXFLAGS ] ; then ../tools/MocList cc; fi ) \ aboutwindow.cc \ audio_encoder.cc \ camera.cc \ cprquerydialog.cc \ daemon.cc \ decoder.cc \ dv1394.cc \ dvfile.cc \ encoder.cc \ file.cc \ frame.cc \ historywidget.cc \ img_encoder.cc \ info.cc \ info_console.cc \ info_gui.cc \ jpeg_mem_dest.cc \ libfame_wrapper.cc \ liblame_wrapper.cc \ mainwindow.cc \ messagebox.cc \ miav.cc \ miav_daemon.cc \ miav_config.cc \ mov_encoder.cc \ mov_encoder_thread.cc \ mov_encoder_writer.cc \ multiplexer.cc \ network.cc \ player.cc \ server.cc \ server_status.cc \ socket.cc \ thread.cc \ util.cc \ videowidget.cc EXTRA_DIST = \ aboutwindow.h \ audio_encoder.h \ camera.h \ cprquerydialog.h \ daemon.h \ debug.h \ decoder.h \ dv.h \ dv1394.h \ dvfile.h \ encoder.h \ file.h \ frame.h \ frame_stream.h \ historywidget.h \ img_encoder.h \ info.h \ info_console.h \ info_gui.h \ iso11172-1.h \ iso11172-2.h \ iso11172-3.h \ jpeg_mem_dest.h \ libfame_wrapper.h \ liblame_wrapper.h \ mainwindow.h \ messagebox.h \ miav.h \ miav_daemon.h \ miav_config.h \ mov_encoder.h \ mov_encoder_thread.h \ mov_encoder_writer.h \ multiplexer.h \ network.h \ package.h \ player.h \ queue.h \ server.h \ server_status.h \ socket.h \ thread.h \ util.h \ videowidget.h miav_LDADD := $(shell if [ $QT_CXXFLAGS ] ; then ../tools/MocList o; fi ) miav_MOC = $(shell if [ $QT_CXXFLAGS ] ; then ../tools/MocList cc; fi ) BUILT_SOURCES = $(miav_MOC) CLEANFILES = $(BUILT_SOURCES) %.moc.cc: %.h $(MOC) -o $@ $< %.h: %.ui $(UIC) -o $@ $< %.cc: %.ui $(UIC) -o $@ -impl $*.h $< # command for creating .res file from .rc on Win32 %.res: %.rc rc $<