diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-10-11 17:19:37 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-10-11 17:22:03 -0400 |
commit | 63f542a5c21103946177b5377cdf5d08e2e68849 (patch) | |
tree | 6c8c7d20c0772be81b6ee08d61f48b56ed4eaacd /src/ext/include.am | |
parent | 7ea904cbc0acbe1575ff68700572da76e4e4b10d (diff) | |
download | tor-63f542a5c21103946177b5377cdf5d08e2e68849.tar.gz tor-63f542a5c21103946177b5377cdf5d08e2e68849.zip |
Move all externally maintained source files into src/ext
The rationale for treating these files differently is that we should
be checking upstream for changes as applicable, and merging changes
upstream as warranted.
Diffstat (limited to 'src/ext/include.am')
-rw-r--r-- | src/ext/include.am | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ext/include.am b/src/ext/include.am new file mode 100644 index 0000000000..97e7e46b46 --- /dev/null +++ b/src/ext/include.am @@ -0,0 +1,12 @@ + +AM_CPPFLAGS += -I$(srcdir)/src/ext -Isrc/ext + +EXTHEADERS = \ + src/ext/ht.h \ + src/ext/eventdns.h \ + src/ext/tinytest.h \ + src/ext/tinytest_macros.h + +noinst_HEADERS+= $(EXTHEADERS) + + |