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 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) (limited to 'util/ttusb_dec_reset/Makefile') 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 -- cgit v1.2.3