Makefile 201 B

1234567891011121314
  1. DOC_DIR = docs
  2. .PHONY: all docs
  3. all:
  4. gcc -L/usr/lib -I/usr/include/igraph -ligraph main.c input.c output.c operations.c graph.c -o ganesha
  5. docs: Doxyfile
  6. doxygen Doxyfile
  7. Doxyfile:
  8. doxygen -g