Commit 721e65a1 authored by Nick Mathewson's avatar Nick Mathewson 🦀
Browse files

Add comments to include.am files to note where new sources go

This mechanism isn't perfect, and sometimes it will guess wrong,
but it will help our automation.
parent 3d13841f
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -6,6 +6,7 @@ noinst_LIBRARIES += \
	src/core/libtor-app-testing.a
endif

# ADD_C_FILE: INSERT SOURCES HERE.
LIBTOR_APP_A_SOURCES = 				\
	src/app/config/config.c			\
	src/app/config/confparse.c		\
@@ -205,6 +206,7 @@ AM_CPPFLAGS += -DSHARE_DATADIR="\"$(datadir)\"" \
src_core_libtor_app_testing_a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS)
src_core_libtor_app_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS)

# ADD_C_FILE: INSERT HEADERS HERE.
noinst_HEADERS +=					\
	src/app/config/config.h				\
	src/app/config/confparse.h			\
+1 −0
Original line number Diff line number Diff line

# ADD_C_FILE: INSERT HEADERS HERE.
noinst_HEADERS += \
	src/lib/arch/bytes.h
+2 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@ if UNITTESTS_ENABLED
noinst_LIBRARIES += src/lib/libtor-buf-testing.a
endif

# ADD_C_FILE: INSERT SOURCES HERE.
src_lib_libtor_buf_a_SOURCES =			\
	src/lib/buf/buffers.c

@@ -13,5 +14,6 @@ src_lib_libtor_buf_testing_a_SOURCES = \
src_lib_libtor_buf_testing_a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS)
src_lib_libtor_buf_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS)

# ADD_C_FILE: INSERT HEADERS HERE.
noinst_HEADERS +=				\
	src/lib/buf/buffers.h
+1 −0
Original line number Diff line number Diff line

# ADD_C_FILE: INSERT HEADERS HERE.
noinst_HEADERS += \
	src/lib/cc/compat_compiler.h \
	src/lib/cc/ctassert.h \
+2 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@ if UNITTESTS_ENABLED
noinst_LIBRARIES += src/lib/libtor-compress-testing.a
endif

# ADD_C_FILE: INSERT SOURCES HERE.
src_lib_libtor_compress_a_SOURCES =		\
	src/lib/compress/compress.c		\
	src/lib/compress/compress_buf.c		\
@@ -18,6 +19,7 @@ src_lib_libtor_compress_testing_a_SOURCES = \
src_lib_libtor_compress_testing_a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS)
src_lib_libtor_compress_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS)

# ADD_C_FILE: INSERT HEADERS HERE.
noinst_HEADERS	+=				\
	src/lib/compress/compress.h		\
	src/lib/compress/compress_lzma.h	\
Loading