From ab959d7b4194715870128e616b8e29d4a101e488 Mon Sep 17 00:00:00 2001 From: etobi Date: Tue, 3 Sep 2013 09:48:41 +0200 Subject: Imported Upstream version 1.1.1+rev1207 --- util/ttusb_dec_reset/Makefile | 28 +++++++++++++++------------- util/ttusb_dec_reset/ttusb_dec_reset.c | 4 +++- 2 files changed, 18 insertions(+), 14 deletions(-) (limited to 'util/ttusb_dec_reset') diff --git a/util/ttusb_dec_reset/Makefile b/util/ttusb_dec_reset/Makefile index cde7de5..b2ca852 100644 --- a/util/ttusb_dec_reset/Makefile +++ b/util/ttusb_dec_reset/Makefile @@ -1,17 +1,19 @@ -CC = gcc -RM = rm -f -CFLAGS = -g -Wall -O2 -LFLAGS = -g -Wall -LDFLAGS = -lusb +# Makefile for linuxtv.org dvb-apps/util/ttusb_dec_reset -OBJS = ttusb_dec_reset.o -TARGET = ttusb_dec_reset +binaries = ttusb_dec_reset -$(TARGET): $(OBJS) - $(CC) $(LFLAGS) $(LDFLAGS) -o $(TARGET) $(OBJS) +ifneq ($(realpath $(binaries)),) +inst_bin = $(binaries) +endif -.c.o: - $(CC) $(CFLAGS) -c $< -o $@ +LDLIBS += -lusb -clean: - $(RM) *.o $(TARGET) +.PHONY: all + +ifeq ($(ttusb_dec_reset),1) +all: $(binaries) +else +all: clean +endif + +include ../../Make.rules diff --git a/util/ttusb_dec_reset/ttusb_dec_reset.c b/util/ttusb_dec_reset/ttusb_dec_reset.c index 51ddfc7..54b3f83 100644 --- a/util/ttusb_dec_reset/ttusb_dec_reset.c +++ b/util/ttusb_dec_reset/ttusb_dec_reset.c @@ -25,10 +25,12 @@ void dec_reset(struct usb_device *dev) } } -int main() +int main(int argc, char *argv[]) { struct usb_bus *busses; struct usb_bus *bus; + (void) argc; + (void) argv; usb_init(); usb_find_busses(); -- cgit v1.2.3