diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-01-15 13:10:14 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-01-15 13:10:14 -0500 |
commit | 5e70c27e8560ac1885ae9d9e1b79d3838b49cc09 (patch) | |
tree | 504a8f3625644d87d6883f4d9afd4c8ce809021b /src/app | |
parent | 5fa7c1b13fbefcfd9b71a1f95922cf4e92b5e141 (diff) | |
parent | 73ac1add3f2af813c18b1da5f0082f6112267304 (diff) | |
download | tor-5e70c27e8560ac1885ae9d9e1b79d3838b49cc09.tar.gz tor-5e70c27e8560ac1885ae9d9e1b79d3838b49cc09.zip |
Merge remote-tracking branch 'tor-github/pr/1657'
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/config/include.am | 21 | ||||
-rw-r--r-- | src/app/main/include.am | 18 |
2 files changed, 39 insertions, 0 deletions
diff --git a/src/app/config/include.am b/src/app/config/include.am new file mode 100644 index 0000000000..5d625efecf --- /dev/null +++ b/src/app/config/include.am @@ -0,0 +1,21 @@ + +# ADD_C_FILE: INSERT SOURCES HERE. +LIBTOR_APP_A_SOURCES += \ + src/app/config/config.c \ + src/app/config/quiet_level.c \ + src/app/config/statefile.c + +# ADD_C_FILE: INSERT HEADERS HERE. +noinst_HEADERS += \ + src/app/config/config.h \ + src/app/config/or_options_st.h \ + src/app/config/or_state_st.h \ + src/app/config/quiet_level.h \ + src/app/config/statefile.h \ + src/app/config/tor_cmdline_mode.h + + +noinst_HEADERS += \ + src/app/config/auth_dirs.inc \ + src/app/config/fallback_dirs.inc \ + src/app/config/testnet.inc diff --git a/src/app/main/include.am b/src/app/main/include.am new file mode 100644 index 0000000000..ea392a8581 --- /dev/null +++ b/src/app/main/include.am @@ -0,0 +1,18 @@ + +# ADD_C_FILE: INSERT SOURCES HERE. +LIBTOR_APP_A_SOURCES += \ + src/app/main/main.c \ + src/app/main/shutdown.c \ + src/app/main/subsystem_list.c \ + src/app/main/subsysmgr.c + +# ADD_C_FILE: INSERT HEADERS HERE. +noinst_HEADERS += \ + src/app/main/main.h \ + src/app/main/ntmain.h \ + src/app/main/shutdown.h \ + src/app/main/subsysmgr.h + +if BUILD_NT_SERVICES +LIBTOR_APP_A_SOURCES += src/app/main/ntmain.c +endif |