all: qd

qd: qd.o
	g++ -o qd qd.o

qd.o: qd.cpp
	g++ -c qd.cpp

clean:
	rm -f *.o *~ 

install:
	./skrypt.sh
