Link against libuuid (OSSP)

This commit is contained in:
Tony Garnock-Jones 2011-01-01 21:11:25 -05:00
parent e055c7fb82
commit 35f42c110a
1 changed files with 2 additions and 2 deletions

View File

@ -8,8 +8,8 @@ CFLAGS = -D_XOPEN_SOURCE=600 -Wall -O0 -g
all: $(TARGET)
$(TARGET): $(OBJECTS)
$(CC) $(CFLAGS) -o $@ $(OBJECTS) -levent
# $(CC) $(CFLAGS) -o $@ $(OBJECTS) -levent -lrt
$(CC) $(CFLAGS) -o $@ $(OBJECTS) -luuid -levent
# $(CC) $(CFLAGS) -o $@ $(OBJECTS) -luuid -levent -lrt
%.o: %.c
$(CC) $(CFLAGS) -c $<