summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am34
1 files changed, 23 insertions, 11 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 07ce35f..4aaf8b3 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -27,18 +27,22 @@ tp_LDADD += libmitm.a @SSL_LIBS@
endif
tp_CXXFLAGS = $(AM_CXXFLAGS) -DVERSION='"@VERSION@"' @THREAD_CFLAGS@
-libproxy_a_SOURCES = proxy.cc resolver.cc logger.cc
+libproxy_a_SOURCES = proxy.cc proxy.hh resolver.cc resolver.hh \
+ logger.cc logger.hh
libproxy_a_CXXFLAGS = $(AM_CXXFLAGS) -DVERSION='"@VERSION@"' @THREAD_CFLAGS@
-libtp_a_SOURCES = args.cc xdg.cc terminal.cc http.cc url.cc paths.cc \
- character.cc config.cc strings.cc io.cc looper.cc \
- buffer.cc chunked.cc package.cc
+libtp_a_SOURCES = args.cc args.hh xdg.cc xdg.hh terminal.cc terminal.hh \
+ http.cc http.hh url.cc url.hh paths.cc paths.hh \
+ character.cc character.hh config.cc config.hh \
+ strings.cc strings.hh io.cc io.hh looper.cc looper.hh \
+ buffer.cc buffer.hh chunked.cc chunked.hh \
+ package.cc package.hh data.hh common.hh
if !HAVE_SSL
libtp_a_SOURCES += mitm_stub.cc
endif
libtp_a_CXXFLAGS = $(AM_CXXFLAGS) -DSYSCONFDIR='"@SYSCONFDIR@"'
-libmitm_a_SOURCES = mitm.cc
+libmitm_a_SOURCES = mitm.cc mitm.hh ssl.hh lru.hh
if HAVE_MBEDTLS
libmitm_a_SOURCES += ssl_mbedtls.cc
endif
@@ -47,23 +51,31 @@ libmitm_a_SOURCES += ssl_openssl.cc
endif
libmitm_a_CXXFLAGS = $(AM_CXXFLAGS) @SSL_CFLAGS@
-tp_genca_SOURCES = genca.cc logger.cc
+tp_genca_SOURCES = genca.cc logger.cc logger.hh
tp_genca_LDADD = libmitm.a libtp.a @SSL_LIBS@
tp_genca_CXXFLAGS = $(AM_CXXFLAGS) -DVERSION='"@VERSION@"'
-libmonitor_a_SOURCES = monitor.cc gui_hexdump.cc
+libmonitor_a_SOURCES = monitor.cc monitor.hh gui_hexdump.cc gui_hexdump.hh
libmonitor_a_CXXFLAGS = $(AM_CXXFLAGS) -DVERSION='"@VERSION@"' @THREAD_CFLAGS@
-tp_monitor_SOURCES = monitor-cmd.cc resolver.cc \
- gui_plainattrtext.cc gui_attrtext.cc
+tp_monitor_SOURCES = monitor-cmd.cc ios_save.hh resolver.cc resolver.hh \
+ gui_plainattrtext.cc gui_plainattrtext.hh \
+ gui_attrtext.cc gui_attrtext.hh
tp_monitor_LDADD = libmonitor.a libtp.a @THREAD_LIBS@
tp_monitor_CXXFLAGS = $(AM_CXXFLAGS) -DVERSION='"@VERSION@"' @THREAD_CFLAGS@
-libmonitor_gui_a_SOURCES = monitor-gui.cc gui_config.cc
+libmonitor_gui_a_SOURCES = monitor-gui.cc gui_config.cc gui_config.hh \
+ gui_about.hh gui_file.hh gui_main.hh \
+ gui_window.hh gui_formapply.hh gui_menu.hh \
+ gui_statusbar.hh gui_form.hh gui_listmodel.hh \
+ gui_message.hh gui_textwnd.hh
+
libmonitor_gui_a_CXXFLAGS = $(AM_CXXFLAGS) -DVERSION='"@VERSION@"' \
@THREAD_CFLAGS@ @PCAP_CFLAGS@
-libattrstr_a_SOURCES = gui_attrtext.cc gui_htmlattrtext.cc
+libattrstr_a_SOURCES = gui_attrtext.cc gui_attrtext.hh \
+ gui_htmlattrtext.cc gui_htmlattrtext.hh \
+ observers.hh
tp_monitor_gtk_SOURCES = gui_gtk.cc
tp_monitor_gtk_LDADD = libmonitor_gui.a libattrstr.a libproxy.a libmonitor.a \