From a5b6430a14834e8d96b9f6a09e554bee4c6dc53c Mon Sep 17 00:00:00 2001 From: Micke Prag Date: Tue, 17 Jun 2008 21:25:13 +0000 Subject: [PATCH] Removed the makefile since it is now depricated by cmake --- tdtool/Makefile | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 tdtool/Makefile 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)