Update in Makefile
diff --git a/Makefile b/Makefile
index 53cfaaa..9a466bc 100644
--- a/Makefile
+++ b/Makefile
@@ -2,12 +2,12 @@
 CFLAGS = -g -Wall -Wpointer-arith -Wreturn-type -Wstrict-prototypes
 LIBS = -lccn -lcrypto
 
-PROGRAMS = nlsr00
+PROGRAMS = nlsr
 
 all: $(PROGRAMS)
 
-nlsr00: nlsr.c nlsr_ndn.c utility.c
-	$(CC) $(CFLAGS) nlsr.c nlsr_ndn.c utility.c -o nlsr00 $(LIBS)
+nlsr: nlsr.c nlsr_ndn.c utility.c
+	$(CC) $(CFLAGS) nlsr.c nlsr_ndn.c utility.c -o nlsr $(LIBS)
 
 clean:
 	rm -f *.o