diff options
Diffstat (limited to 'src/modules/torrent/Makefile.am')
-rw-r--r-- | src/modules/torrent/Makefile.am | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/modules/torrent/Makefile.am b/src/modules/torrent/Makefile.am new file mode 100644 index 00000000..ab0d80cb --- /dev/null +++ b/src/modules/torrent/Makefile.am @@ -0,0 +1,30 @@ +############################################################################### +# KVirc IRC client Makefile - 10.03.2000 Szymon Stefanek <stefanek@tin.it> +############################################################################### + +AM_CPPFLAGS = -I$(SS_TOPSRCDIR)/src/kvilib/include/ -I$(SS_TOPSRCDIR)/src/kvirc/include/ \ +$(SS_INCDIRS) $(SS_CPPFLAGS) -DGLOBAL_KVIRC_DIR=\"$(globalkvircdir)\" + +pluglib_LTLIBRARIES = libkvitorrent.la + +#%.moc: %.h +# $(SS_QT_MOC) $< -o $@ + +libkvitorrent_la_LDFLAGS = -avoid-version -module + +libkvitorrent_la_SOURCES = libkvitorrent.cpp \ + tc_interface.cpp \ + tc_ktorrentdcopinterface.cpp \ + tc_statusbarapplet.cpp + +libkvitorrent_la_LIBADD = $(SS_LIBLINK) ../../kvilib/build/libkvilib.la + +noinst_HEADERS = tc_interface.h \ + tc_ktorrentdcopinterface.h \ + tc_statusbarapplet.h + +%.moc: %.h + $(SS_QT_MOC) $< -o $@ + +tc_ktorrentdcopinterface.cpp: tc_ktorrentdcopinterface.moc +tc_statusbarapplet.cpp: tc_statusbarapplet.moc |