include ../../toprules.make
INCLUDES += -I$(TOPDIR)
LDFLAGS = -L$(TOPDIR)
LIBS = -lcolyseus-wan -lpthread -lm -lz -lgmp
extra = $(TOPDIR)/libcolyseus-wan.so

TOPDIR = ../..
TARGET = match

all: $(TARGET)

$(TARGET): $(objs) $(extra) 
	$(CPP) $(CFLAGS) $(LDFLAGS) $(objs) $(LIBS) -o $(TARGET)

include ../../botrules.make
