From 6e40287e2f39a80fc72bd8d0fbc1a8334d688c2d Mon Sep 17 00:00:00 2001 From: etobi Date: Tue, 3 Sep 2013 09:48:38 +0200 Subject: Imported Upstream version 1.1.0 --- util/ttusb_dec_reset/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 util/ttusb_dec_reset/Makefile (limited to 'util/ttusb_dec_reset/Makefile') diff --git a/util/ttusb_dec_reset/Makefile b/util/ttusb_dec_reset/Makefile new file mode 100644 index 0000000..cde7de5 --- /dev/null +++ b/util/ttusb_dec_reset/Makefile @@ -0,0 +1,17 @@ +CC = gcc +RM = rm -f +CFLAGS = -g -Wall -O2 +LFLAGS = -g -Wall +LDFLAGS = -lusb + +OBJS = ttusb_dec_reset.o +TARGET = ttusb_dec_reset + +$(TARGET): $(OBJS) + $(CC) $(LFLAGS) $(LDFLAGS) -o $(TARGET) $(OBJS) + +.c.o: + $(CC) $(CFLAGS) -c $< -o $@ + +clean: + $(RM) *.o $(TARGET) -- cgit v1.2.3