From da8531f0df9b328f33c87b623de25dbebf0df642 Mon Sep 17 00:00:00 2001 From: Sean Conner Date: Fri, 7 Jan 2011 01:14:46 -0500 Subject: [PATCH] Added nodelist code to Makefile --- src/common/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/common/Makefile b/src/common/Makefile index cba0372..d038aa1 100644 --- a/src/common/Makefile +++ b/src/common/Makefile @@ -11,7 +11,7 @@ TESTDIR=../tests/ CFLAGS += -Wall -Wextra -pedantic CFLAGS+=-std=c99 -OBJECTS := handy.o utf8.o format.o utf8_urlencode.o +OBJECTS := handy.o utf8.o format.o utf8_urlencode.o nodelist.o all: $(PROGS) $(OBJECTS) @@ -29,3 +29,7 @@ utf8.o: utf8.c $(INC)/utf8.h format.o: format.c $(INC)/formats.h $(CC) $(CFLAGS) $(INCLUDES) $(DEBUG) -c format.c + +nodelist.o : nodelist.c $(INC)/nodelist.h + $(CC) $(CFLAGS) $(INCLUDES) $(DEBUG) -c nodelist.c +