# -*- Makefile -*-

lib_TARGETS = champion

# Tu peux rajouter des fichiers source ici
champion-dists = $(wildcard *.py)

# Evite de toucher a ce qui suit
champion-dists += interface.hh
champion-srcs = interface.cc

champion-cxxflags = -O2 -fPIC $(shell python3-config --includes)
champion-ldflags = -s $(shell python3-config --ldflags)

V=1
include $(MFPATH)/rules.mk
