diff --git a/tdtool/Makefile b/tdtool/Makefile deleted file mode 100644 index 04d13026..00000000 --- a/tdtool/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -CC=g++ -CFLAGS=-Wall -FILES=main.cpp -LIBS=-L. -ltellusbd101 - -APP = tdtool - -all: $(APP) - -$(APP): main.cpp - $(CC) -o $(APP) $(CFLAGS) $(LIBS) $(FILES) - -clean: - rm -f *.o ; rm $(APP)