OBJ_FILE = reportmodule.o SO_FILE = report.so INCLUDES = -I../../src/include/ -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include all: gcc -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -fPIC -DMAJOR_VERSION=1 -DMINOR_VERSION=0 $(INCLUDES) `pkg-config python --cflags` -c reportmodule.c -o $(OBJ_FILE) gcc -shared $(OBJ_FILE) `pkg-config python --libs` -o $(SO_FILE)