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/feature/dircommon | |
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/feature/dircommon')
-rw-r--r-- | src/feature/dircommon/include.am | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/feature/dircommon/include.am b/src/feature/dircommon/include.am new file mode 100644 index 0000000000..f0f0323d12 --- /dev/null +++ b/src/feature/dircommon/include.am @@ -0,0 +1,16 @@ + +# ADD_C_FILE: INSERT SOURCES HERE. +LIBTOR_APP_A_SOURCES += \ + src/feature/dircommon/consdiff.c \ + src/feature/dircommon/directory.c \ + src/feature/dircommon/fp_pair.c \ + src/feature/dircommon/voting_schedule.c + +# ADD_C_FILE: INSERT HEADERS HERE. +noinst_HEADERS += \ + src/feature/dircommon/consdiff.h \ + src/feature/dircommon/dir_connection_st.h \ + src/feature/dircommon/directory.h \ + src/feature/dircommon/fp_pair.h \ + src/feature/dircommon/vote_timing_st.h \ + src/feature/dircommon/voting_schedule.h |