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/main | |
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/main')
-rw-r--r-- | src/app/main/include.am | 18 |
1 files changed, 18 insertions, 0 deletions
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 |