diff options
author | cypherpunks <cypherpunks@torproject.org> | 2016-01-08 13:05:46 +0100 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-01-08 13:27:36 -0800 |
commit | 4c10a9c445e825886c658d67f5e44fdae37ffea3 (patch) | |
tree | 373f8cf1b15af197efe6673329a303d78bee0002 /src/common/include.am | |
parent | fb373a9ef6f07229b20cf1176522c625cd5c0a4d (diff) | |
download | tor-4c10a9c445e825886c658d67f5e44fdae37ffea3.tar.gz tor-4c10a9c445e825886c658d67f5e44fdae37ffea3.zip |
Simplify micro-revision dependency rules
The Automake variable OBJEXT is automatically adjusted to the correct
object file extension for the target platform.
Diffstat (limited to 'src/common/include.am')
-rw-r--r-- | src/common/include.am | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/common/include.am b/src/common/include.am index d82c093d1e..5afb30da6a 100644 --- a/src/common/include.am +++ b/src/common/include.am @@ -78,10 +78,8 @@ LIBOR_A_SOURCES = \ $(threads_impl_source) \ $(readpassphrase_source) -src/common/src_common_libor_testing_a-log.o \ - src/common/src_common_libor_testing_a-log.obj \ - src/common/log.o \ - src/common/log.obj : micro-revision.i +src/common/src_common_libor_testing_a-log.$(OBJEXT) \ + src/common/log.$(OBJEXT): micro-revision.i LIBOR_CRYPTO_A_SOURCES = \ src/common/aes.c \ |