diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-01-13 09:34:17 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-01-13 09:34:17 -0500 |
commit | 73ac1add3f2af813c18b1da5f0082f6112267304 (patch) | |
tree | 47181b7a09b4fa5e3aa5a7879040e04901da1873 /src/core/proto | |
parent | 5888db496746e2fef344c40912ff07be8a216f9c (diff) | |
download | tor-73ac1add3f2af813c18b1da5f0082f6112267304.tar.gz tor-73ac1add3f2af813c18b1da5f0082f6112267304.zip |
Split core/include.am into per-subdirectory include.am files
Closes ticket 32137.
Diffstat (limited to 'src/core/proto')
-rw-r--r-- | src/core/proto/include.am | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/core/proto/include.am b/src/core/proto/include.am new file mode 100644 index 0000000000..726ef924cf --- /dev/null +++ b/src/core/proto/include.am @@ -0,0 +1,18 @@ + +# ADD_C_FILE: INSERT SOURCES HERE. +LIBTOR_APP_A_SOURCES += \ + src/core/proto/proto_cell.c \ + src/core/proto/proto_control0.c \ + src/core/proto/proto_ext_or.c \ + src/core/proto/proto_haproxy.c \ + src/core/proto/proto_http.c \ + src/core/proto/proto_socks.c + +# ADD_C_FILE: INSERT HEADERS HERE. +noinst_HEADERS += \ + src/core/proto/proto_cell.h \ + src/core/proto/proto_control0.h \ + src/core/proto/proto_ext_or.h \ + src/core/proto/proto_haproxy.h \ + src/core/proto/proto_http.h \ + src/core/proto/proto_socks.h |