blob: 3236fe6e4b915eb4851961c442236321bb58a825 [file] [log] [blame]
CC = cc
CFLAGS = -g -Wall -Wpointer-arith -Wreturn-type -Wstrict-prototypes
LIBS = -lccn -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 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 *.dSYM
.c.o:
$(CC) $(CFLAGS) -c $<
.PHONY: all clean