From 8678e27b051b84d232a80b1d060c58032f761eed Mon Sep 17 00:00:00 2001 From: Daniel Thor Kristjansson Date: Mon, 17 Dec 2012 11:40:43 -0500 Subject: [PATCH] Remove old Makefile.bin from libmythhdhomerun. --- mythtv/external/libhdhomerun/Makefile.bin | 54 ----------------------- 1 file changed, 54 deletions(-) delete mode 100644 mythtv/external/libhdhomerun/Makefile.bin diff --git a/mythtv/external/libhdhomerun/Makefile.bin b/mythtv/external/libhdhomerun/Makefile.bin deleted file mode 100644 index b6bf271f9be..00000000000 --- a/mythtv/external/libhdhomerun/Makefile.bin +++ /dev/null @@ -1,54 +0,0 @@ -LIBSRCS += hdhomerun_channels.c -LIBSRCS += hdhomerun_control.c -LIBSRCS += hdhomerun_device_selector.c -LIBSRCS += hdhomerun_channelscan.c -LIBSRCS += hdhomerun_debug.c -LIBSRCS += hdhomerun_discover.c -LIBSRCS += hdhomerun_pkt.c -LIBSRCS += hdhomerun_video.c -LIBSRCS += hdhomerun_device.c -LIBSRCS += hdhomerun_os_posix.c -LIBSRCS += hdhomerun_sock_posix.c - -CC := $(CROSS_COMPILE)gcc -STRIP := $(CROSS_COMPILE)strip - -CFLAGS += -Wall -O2 -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith -LDFLAGS += -lpthread -lrt -SHARED = -shared -Wl,-soname,libhdhomerun$(LIBEXT) - -ifeq ($(OS),Windows_NT) - BINEXT := .exe - LIBEXT := .dll - LDFLAGS += -liphlpapi -else - LIBEXT := .so - ifneq ($(findstring solaris,$(shell echo $$OSTYPE)),) - LDFLAGS += -lns -lsocket - endif - ifneq ($(findstring darwin,$(shell echo $$OSTYPE)),) - CFLAGS += -arch i386 -arch ppc - LIBEXT := .dylib - SHARED := -dynamiclib -install_name libhdhomerun$(LIBEXT) - endif -endif - -all : hdhomerun_config$(BINEXT) libhdhomerun$(LIBEXT) - -hdhomerun_config$(BINEXT) : hdhomerun_config.c $(LIBSRCS) - $(CC) $(CFLAGS) $+ $(LDFLAGS) -o $@ - $(STRIP) $@ - -libhdhomerun$(LIBEXT) : $(LIBSRCS) - $(CC) $(CFLAGS) -fPIC -DDLL_EXPORT $(SHARED) $+ $(LDFLAGS) -o $@ - -clean : - -rm -f hdhomerun_config$(BINEXT) - -rm -f libhdhomerun$(LIBEXT) - -distclean : clean - -%: - @echo "(ignoring request to make $@)" - -.PHONY: all list clean distclean