Changeset 7101
- Timestamp:
- Nov 12, 2008, 4:25:38 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/Makefile.am
r7087 r7101 113 113 noinst_PROGRAMS = $(TESTS) 114 114 115 APPS_LDFLAGS= \115 apps_ldflags = \ 116 116 $(ZLIB_LDFLAGS) 117 117 118 APPS_LDADD= \118 apps_ldadd = \ 119 119 ./libtransmission.a \ 120 120 $(top_builddir)/third-party/miniupnp/libminiupnp.a \ … … 129 129 130 130 bencode_test_SOURCES = bencode-test.c 131 bencode_test_LDADD = $(APPS_LDADD) 131 bencode_test_LDADD = ${apps_ldadd} 132 bencode_test_LDFLAGS = ${apps_ldflags} 133 132 134 blocklist_test_SOURCES = blocklist-test.c 133 blocklist_test_LDADD = $(APPS_LDADD) 135 blocklist_test_LDADD = ${apps_ldadd} 136 blocklist_test_LDFLAGS = ${apps_ldflags} 137 134 138 clients_test_SOURCES = clients-test.c 135 clients_test_LDADD = $(APPS_LDADD) 139 clients_test_LDADD = ${apps_ldadd} 140 clients_test_LDFLAGS = ${apps_ldflags} 141 136 142 json_test_SOURCES = json-test.c 137 json_test_LDADD = $(APPS_LDADD) 143 json_test_LDADD = ${apps_ldadd} 144 json_test_LDFLAGS = ${apps_ldflags} 145 138 146 rpc_test_SOURCES = rpc-test.c 139 rpc_test_LDADD = $(APPS_LDADD) 147 rpc_test_LDADD = ${apps_ldadd} 148 rpc_test_LDFLAGS = ${apps_ldflags} 149 140 150 test_fastset_SOURCES = test-fastset.c 141 test_fastset_LDADD = $(APPS_LDADD) 151 test_fastset_LDADD = ${apps_ldadd} 152 test_fastset_LDFLAGS = ${apps_ldflags} 153 142 154 test_peer_id_SOURCES = test-peer-id.c 143 test_peer_id_LDADD = $(APPS_LDADD) 155 test_peer_id_LDADD = ${apps_ldadd} 156 test_peer_id_LDFLAGS = ${apps_ldflags} 157 144 158 utils_test_SOURCES = utils-test.c 145 utils_test_LDADD = $(APPS_LDADD) 159 utils_test_LDADD = ${apps_ldadd} 160 utils_test_LDFLAGS = ${apps_ldflags} 161 146 162 147 163
Note: See TracChangeset
for help on using the changeset viewer.