Removed the makefile since it is now depricated by cmake

This commit is contained in:
Micke Prag 2008-06-17 21:25:13 +00:00
parent 4ce2af5315
commit a5b6430a14

View file

@ -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)