2 PLUGINDIR=$(shell gcc -print-file-name=plugin)
4 CXXFLAGS=-fPIC -Wall -Wno-switch -g
5 CPPFLAGS=-I. -I$(PLUGINDIR)/include
9 export.o: export.cc list.h
10 export.so: export.o tree-codes.o
11 $(CC) $(INCLUDE) -shared -fPIC -o $@ $^
14 rm -f export.o tree-codes.o export.so