First Commit with CCN Sync
diff --git a/nlsr-sync-0.0/Makefile b/nlsr-sync-0.0/Makefile
new file mode 100755
index 0000000..d92ec7c
--- /dev/null
+++ b/nlsr-sync-0.0/Makefile
@@ -0,0 +1,34 @@
+CC = cc
+CFLAGS = -g -Wall -Wpointer-arith -Wreturn-type -Wstrict-prototypes
+LIBS = -lccn -lccnsync -lcrypto 
+
+PROGRAMS = nlsrc nlsr
+INSTALL_PATH=/usr/local/bin/
+
+NLSR_SRCS=nlsr.c nlsr_ndn.c nlsr_npl.c  nlsr_adl.c nlsr_lsdb.c nlsr_route.c nlsr_npt.c nlsr_fib.c nlsr_sync.c utility.c
+NLSRC_SRCS=nlsrc.c
+
+all: $(PROGRAMS)
+
+nlsr: $(NLSR_SRCS)
+	$(CC) $(CFLAGS) $(NLSR_SRCS) -o nlsr $(LIBS) -lm
+
+nlsrc: $(NLSRC_SRCS)
+	$(CC) $(CFLAGS) $(NLSRC_SRCS) -o nlsrc $(LIBS) -lm
+
+install: $(PROGRAMS)
+	cp $(PROGRAMS) $(INSTALL_PATH)
+	cd $(INSTALL_PATH); chown root:0 $(PROGRAMS); chmod 755 $(PROGRAMS)
+
+uninstall:
+	cd $(INSTALL_PATH); rm -f $(PROGRAMS)
+
+clean:
+	rm -f *.o
+	rm -f $(PROGRAMS)
+	rm -rf $(PROGRAMS).dSYM
+
+.c.o:
+	$(CC) $(CFLAGS) -c $<
+
+.PHONY: all clean