X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/graphlib.git/blobdiff_plain/6e5da99d46dc4139c3ccf56f3a858e809c9cfa42..d36574805d09410419348c7ae3d65365a8fdd26d:/INSTALL diff --git a/INSTALL b/INSTALL old mode 100755 new mode 100644 index 1e464a7..6652778 --- a/INSTALL +++ b/INSTALL @@ -1,13 +1,11 @@ -#!/usr/bin/make -f +The only dependencies are Qt4 development files. On Debian and +Ubuntu, install the packages libqt4-dev and qt4-qmake. -DEST = $(HOME)/CoursInfo/Algo_1A/tp/graph +To use this library, just copy the two files DrawingWindow.h and +DrawingWindow.cpp in your project, and build your program. See the +examples to find how to use qmake for the build process. -SRC = DrawingWindow.h DrawingWindow.cpp exemple.cpp exemple.pro - -.PHONY: install - -install: - install -m 644 $(SRC) $(DEST) - doxygen Doxyfile - install -m 755 -d $(DEST)/html - install -m 644 html/* $(DEST)/html +To generate the documentation, use doxygen with the command: + doxygen Doxyfile +or simply run + make -f install.mk generate