Skip to content

Commit

Permalink
Added nodelist code to Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
spc476 authored and Dave Täht committed Jan 7, 2011
1 parent 535d459 commit da8531f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/common/Makefile
Expand Up @@ -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)

Expand All @@ -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

0 comments on commit da8531f

Please sign in to comment.