You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 434 B

123456789101112131415161718
  1. CXX? = g++
  2. INCLUDE = /usr/include/qt4
  3. CFLAGS = -Wall -O3 -I$(INCLUDE) -I$(INCLUDE)/QtGui -I$(INCLUDE)/QtCore
  4. LIB = -lQtGui -lQtCore
  5. MOC = /usr/bin/moc-qt4
  6. svm-toy: svm-toy.cpp svm-toy.moc ../../svm.o
  7. $(CXX) $(CFLAGS) svm-toy.cpp ../../svm.o -o svm-toy $(LIB)
  8. svm-toy.moc: svm-toy.cpp
  9. $(MOC) svm-toy.cpp -o svm-toy.moc
  10. ../../svm.o: ../../svm.cpp ../../svm.h
  11. make -C ../.. svm.o
  12. clean:
  13. rm -f *~ svm-toy svm-toy.moc ../../svm.o

A Python package for graph kernels, graph edit distances and graph pre-image problem.