LIB  = libnetfilter_queue.a
SRC_DIR = src

.PHONY : $(SRC_DIR)
	all : $(SRC_DIR)

src: 
	$(MAKE) -C $@

clean: 
	rm -f $(LIB) ./src/*.o

