Adding the Makefile.
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..38d9044
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,31 @@
+PACKAGE_NAME=PF_RING-5.6.0
+
+
+uninstall:
+	echo installing pf_ring irina
+
+
+kernel:
+	# Installing the Linux kernel module
+	cd $(PACKAGE_NAME)/kernel && \
+	$(MAKE) V=1
+
+libs:
+	# Installing PF_RING library and lipbcap
+	cd $(PACKAGE_NAME)/userland/lib && \
+	echo calea $(PWD) && \
+	ls -l && \
+	./configure --target=mipsel-linux --host=mipsel-linux --build=x86_64-unknown-linux-gnu --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc && \
+	$(MAKE) V=1 && \
+	$(MAKE) install V=1 
+	#cd ../libpcap
+	#./configure --target=mipsel-linux
+	#./configure
+	#$(MAKE) V=1
+
+examples:
+	cd $(PACKAGE_NAME)/userland/exampes
+	$(MAKE) V=1
+
+install: kernel libs
+	echo installing pf_ring irina