CPP=g++
OBJS=aux.o log.o class.o niceshaper.o conv.o filter.o ifaces.o trigger.o instance.o libnetlink.o main.o net.o sys.o talk.o tests.o
TARGET=niceshaper

CXXFLAGS=-Wall -pedantic -I../include
 
.cc.o:
	$(CPP) $(CXXFLAGS) -c $<

all: $(OBJS)
	$(CPP) $(OBJS) -o $(TARGET)

clean:
	rm -f *.o $(TARGET)
