1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
## Process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = nostdinc subdir-objects
bin_PROGRAMS = ihu
ihu_SOURCES = \
src/Config.cpp src/Config.h\
src/Error.cpp src/Error.h\
src/Logger.cpp src/Logger.h\
src/Receiver.cpp src/Receiver.hpp\
src/TcpServer.cpp src/TcpServer.hpp\
src/Transmitter.cpp src/Transmitter.hpp\
src/Player.cpp src/Player.hpp\
src/Packet.cpp src/Packet.h\
src/PacketHandler.cpp src/PacketHandler.h\
src/Recorder.cpp src/Recorder.hpp\
src/Settings.cpp src/Settings.hpp\
src/LogViewer.cpp src/LogViewer.hpp\
src/Blowfish.cpp src/Blowfish.h\
src/Rsa.cpp src/Rsa.h\
src/Images.cpp src/ring_sounds.h\
src/trayicon.cpp src/trayicon.hpp\
src/Ihu2Spx.cpp src/Ihu2Spx.h\
src/IhuNoGui.cpp src/IhuNoGui.hpp\
src/Ihu.cpp src/Ihu.hpp\
src/main.cpp
nodist_ihu_SOURCES = \
src/moc_Receiver.cpp\
src/moc_TcpServer.cpp\
src/moc_Transmitter.cpp\
src/moc_Player.cpp\
src/moc_Recorder.cpp\
src/moc_Settings.cpp\
src/moc_LogViewer.cpp\
src/moc_trayicon.cpp\
src/moc_IhuNoGui.cpp\
src/moc_Ihu.cpp
SUBDIRS = doc icon
ihu_CXXFLAGS = @QT_CXXFLAGS@ -Wall
ihu_LDADD = @QT_LIBS@ @OGG_LIBS@ -lSoundTouch
moc_%.cpp: %.hpp
$(QT_MOC) $< -o $@
AM_CPPFLAGS = -DPKGDATADIR=\"$(pkgdatadir)\"
|