client: Netopeer apache module initial commit
diff --git a/src/Makefile b/src/Makefile
new file mode 100644
index 0000000..a817e39
--- /dev/null
+++ b/src/Makefile
@@ -0,0 +1,17 @@
+NAME=mod_netconf
+SOURCES=$(NAME).c
+
+APXS=/usr/sbin/apxs2
+
+CFLAGS=-I/usr/include/libxml2 
+LIBS=-lnetconf -lxml2 -lz -lm 
+
+all: $(SOURCES)
+	$(APXS) $(CPPFLAGS) $(CFLAGS) $(LIBS) -c $(SOURCES)
+
+install: $(NAME).la
+	$(APXS) -i $(NAME).la
+
+clean:
+	rm -rf .libs *.la *.lo *.slo
+