QTINC = -I$(QTDIR)/include
KDEINC = -I$(KDEDIR)/include
QTLIB = -L$(QTDIR)/lib
KDELIB = -L$(KDEDIR)/lib


 kweather : kuniqueweather.o main.o
	g++ $(QTLIB) $(KDELIB) -ldl -lqt -lkdecore -lkdeui main.o kuniqueweather.o  -o kuniqueweather

 main.o : main.cpp
	g++ -c $(QTINC) $(KDEINC) main.cpp

 kuniqueweather.o : kuniqueweather.cpp kuniqueweather.h
	g++ -c $(QTINC) $(KDEINC) kuniqueweather.cpp

 clean:
	rm -f *.o *~ kuniqueweather


