Changeset 5201


Ignore:
Timestamp:
Mar 5, 2008, 12:50:53 AM (15 years ago)
Author:
charles
Message:

added `benc2php' utility

Location:
trunk/libtransmission
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libtransmission/Makefile.am

    r5137 r5201  
    7272    verify.h
    7373
     74bin_PROGRAMS = benc2php
    7475
    75 
    76 noinst_PROGRAMS = \
     76TESTS = \
    7777    bencode-test \
    7878    test-fastset \
    7979    test-peer-id
    8080
    81 TESTS = $(noinst_PROGRAMS)
     81noinst_PROGRAMS = $(TESTS)
    8282
    83 TEST_LDADD = \
     83APPS_LDADD = \
    8484    ./libtransmission.a  \
    8585    $(top_builddir)/third-party/miniupnp/libminiupnp.a \
     
    8888    $(OPENSSL_LIBS) $(PTHREAD_LIBS) -lm
    8989
     90benc2php_SOURCES = benc2php.c
     91benc2php_LDADD = $(APPS_LDADD)
    9092bencode_test_SOURCES = bencode-test.c
    91 bencode_test_LDADD = $(TEST_LDADD)
     93bencode_test_LDADD = $(APPS_LDADD)
    9294test_fastset_SOURCES = test-fastset.c
    93 test_fastset_LDADD = $(TEST_LDADD)
     95test_fastset_LDADD = $(APPS_LDADD)
    9496test_peer_id_SOURCES = test-peer-id.c
    95 test_peer_id_LDADD = $(TEST_LDADD)
     97test_peer_id_LDADD = $(APPS_LDADD)
    9698
    9799
Note: See TracChangeset for help on using the changeset viewer.