include.am (1557B)
1 2 # ADD_C_FILE: INSERT SOURCES HERE. 3 LIBTOR_APP_A_SOURCES += \ 4 src/feature/hs/hs_cache.c \ 5 src/feature/hs/hs_cell.c \ 6 src/feature/hs/hs_circuit.c \ 7 src/feature/hs/hs_circuitmap.c \ 8 src/feature/hs/hs_client.c \ 9 src/feature/hs/hs_common.c \ 10 src/feature/hs/hs_config.c \ 11 src/feature/hs/hs_control.c \ 12 src/feature/hs/hs_descriptor.c \ 13 src/feature/hs/hs_dos.c \ 14 src/feature/hs/hs_ident.c \ 15 src/feature/hs/hs_intropoint.c \ 16 src/feature/hs/hs_metrics.c \ 17 src/feature/hs/hs_ob.c \ 18 src/feature/hs/hs_service.c \ 19 src/feature/hs/hs_stats.c \ 20 src/feature/hs/hs_sys.c \ 21 src/feature/hs/hs_metrics_entry.c 22 23 # Proof of Work module 24 MODULE_POW_SOURCES = \ 25 src/feature/hs/hs_pow.c 26 27 if BUILD_MODULE_POW 28 LIBTOR_APP_A_SOURCES += $(MODULE_POW_SOURCES) 29 endif 30 31 # ADD_C_FILE: INSERT HEADERS HERE. 32 noinst_HEADERS += \ 33 src/feature/hs/hs_cache.h \ 34 src/feature/hs/hs_cell.h \ 35 src/feature/hs/hs_circuit.h \ 36 src/feature/hs/hs_circuitmap.h \ 37 src/feature/hs/hs_client.h \ 38 src/feature/hs/hs_common.h \ 39 src/feature/hs/hs_config.h \ 40 src/feature/hs/hs_control.h \ 41 src/feature/hs/hs_descriptor.h \ 42 src/feature/hs/hs_dos.h \ 43 src/feature/hs/hs_ident.h \ 44 src/feature/hs/hs_intropoint.h \ 45 src/feature/hs/hs_metrics.h \ 46 src/feature/hs/hs_ob.h \ 47 src/feature/hs/hs_opts_st.h \ 48 src/feature/hs/hs_options.inc \ 49 src/feature/hs/hs_pow.h \ 50 src/feature/hs/hs_service.h \ 51 src/feature/hs/hs_stats.h \ 52 src/feature/hs/hsdir_index_st.h \ 53 src/feature/hs/hs_sys.h \ 54 src/feature/hs/hs_metrics_entry.h