commit 9145ac5f3114309f24e1d1a0b0c10c7f14201cbb Author: Jacob Appelbaum jacob@appelbaum.net Date: Wed Apr 24 19:32:35 2013 -0700
Remove unused Makefile --- src/Makefile.am | 116 ------------------------------------------------------- 1 file changed, 116 deletions(-)
diff --git a/src/Makefile.am b/src/Makefile.am deleted file mode 100644 index cd9802f..0000000 --- a/src/Makefile.am +++ /dev/null @@ -1,116 +0,0 @@ -SUBDIRS = compat - -AUTOMAKE_OPTIONS = foreign 1.7 - -# Our main programs -if TARGET_LINUX -bin_PROGRAMS = tlsdate-routeup tlsdate tlsdate-helper \ - tlsdated tlsdated_unittest -endif - -if TARGET_FREEBSD -bin_PROGRAMS = tlsdate tlsdate-helper -endif - -if TARGET_NETBSD -bin_PROGRAMS = tlsdate tlsdate-helper -endif - -if TARGET_BSD -if !TARGET_FREEBSD -if !TARGET_NETBSD -bin_PROGRAMS = tlsdate tlsdate-helper -endif -endif -endif - -if TARGET_OSX -bin_PROGRAMS = tlsdate tlsdate-helper -endif - -AM_CFLAGS = -fvisibility=hidden -if TARGET_LINUX -# Our main program -bin_PROGRAMS = tlsdate-routeup tlsdate tlsdate-helper \ - tlsdated tlsdated_unittest -if !POLARSSL -bin_PROGRAMS = $(bin_PROGRAMS) proxy_bio_unittest -endif -AM_CFLAGS = -fvisibility=hidden -if !POLARSSL -proxy_bio_unittest_SOURCES = proxy-bio.c proxy-bio-unittest.c test-bio.c util.c -proxy_bio_unittest_LDADD = -lssl -lcrypto -endif -tlsdate_routeup_SOURCES = routeup.c util.c -tlsdate_routeup_CFLAGS = $(AM_CFLAGS) -DROUTEUP_MAIN -endif - -tlsdate_SOURCES = tlsdate.c -tlsdate_helper_SOURCES = proxy-bio.c util.c tlsdate-helper.c - -if TARGET_LINUX -tlsdate_helper_LDADD = @SSL_LIBS@ @SSL_LDFLAGS@ -lrt \ - $(top_builddir)/src/compat/libtlsdate_compat.la -endif - -if TARGET_FREEBSD -tlsdate_helper_LDADD = @SSL_LIBS@ @SSL_LDFLAGS@ -lrt \ - $(top_builddir)/src/compat/libtlsdate_compat.la -endif - -if TARGET_NETBSD -tlsdate_helper_LDADD = @SSL_LIBS@ @SSL_LDFLAGS@ -lrt \ - $(top_builddir)/src/compat/libtlsdate_compat.la -endif - -if TARGET_BSD -if !TARGET_FREEBSD -if !TARGET_NETBSD -tlsdate_helper_LDADD = @SSL_LIBS@ @SSL_LDFLAGS@ -lrt \ - $(top_builddir)/src/compat/libtlsdate_compat.la -endif -endif -endif - -if TARGET_OSX -tlsdate_helper_LDADD = @SSL_LIBS@ @SSL_LDFLAGS@ -lrt \ - $(top_builddir)/src/compat/.libs/libtlsdate_compat.dylib -endif - -if TARGET_LINUX -tlsdated_SOURCES = routeup.c tlsdated.c util.c -tlsdated_CFLAGS = $(AM_CFLAGS) -DTLSDATED_MAIN -tlsdated_unittest_SOURCES = routeup.c tlsdated-unittest.c util.c -endif - -if HAVE_ANDROID_SYSTEM -tlsdated_unittest_SOURCES += common/android.c common/fmemopen.c -endif - -if TARGET_NETBSD -tlsdated_unittest_SOURCES += common/android.c common/fmemopen.c -endif - -if TARGET_OSX -tlsdated_SOURCES = routeup.c tlsdated.c util.c -tlsdated_CFLAGS = $(AM_CFLAGS) -DTLSDATED_MAIN -endif - -if TARGET_LINUX -TESTS = tlsdated_unittest -if !POLARSSL -TESTS = $(TESTS) proxy_bio_unittest -endif - -# We're not shipping headers -noinst_HEADERS = tlsdate.h - -if HAVE_ANDROID_SYSTEM -noinst_HEADERS+= common/android.h -noinst_HEADERS+= common/fmemopen.h -endif - -if TARGET_NETBSD -noinst_HEADERS+= common/android.h -noinst_HEADERS+= common/fmemopen.h -endif
tor-commits@lists.torproject.org