File: Makefile

package info (click to toggle)
graph-tool 2.91%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 28,920 kB
  • sloc: cpp: 85,847; python: 30,777; makefile: 909; xml: 101; sh: 42
file content (6 lines) | stat: -rw-r--r-- 199 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
CXX=g++
CXXFLAGS=-O3 -fopenmp -std=gnu++17 -Wall -fPIC `pkg-config --cflags --libs graph-tool-py` -shared
ALL: libkcore.so

libkcore.so: kcore.hh kcore.cc
	${CXX} ${CXXFLAGS} kcore.cc -o libkcore.so