#######################################################################
LOCATION = mrouter/examples
#######################################################################

DATE = Fri Feb 23 14:31:00 UTC 2024

CXX = c++
CC = cc -std=gnu11
CFLAGS = -O -Wall -W -Wshadow -Wwrite-strings -pthread -Wno-ignored-qualifiers
DEPEND_PROG = $(CC) -MM -O -Wall -W -Wshadow -Wwrite-strings -pthread 
AR = /opt/bin/x86_64-linux-gnu-libgfortran3-cxx03/ar
RANLIB = /opt/bin/x86_64-linux-gnu-libgfortran3-cxx03/ranlib
FILTER = 
PIC_OPT = -fPIC
SOEXT = so
LSHFLAG = -shared
OSNAME = LinuxUnknown
LIBDL = -ldl

INCLUDE = -I/usr/local/xictools/mrouter/include
CCFILES = main-plg.cc

mrouter-plg: main-plg.cc
	$(CXX) $(CFLAGS) $(INCLUDE) -o mrouter-plg main-plg.cc $(LIBDL)

.cc.o:
	$(CXX) $(CFLAGS) $(INCLUDE) -c $*.cc

depend:
	@echo depending in examples

clean:
	-@rm -f mrouter-plg

distclean:
	-@rm -f Makefile mrouter-plg

#######################################################################
