Hi, I am trying to compile a program that uses mxml lib, and the program compiles on debian with mxml installed with apt-get install. I'am then trying to compile on a linux with library installed in the following directory /home/lala/mxml-2.3/ I try to compile with the following Makefile : CC=gcc CFLAGS=-c -Wall -B /home/smartpit/mxml-2.3/ LDFLAGS=-lpthread -lrt -static -mxml -B /home/smartpit/mxml-2.3/ SOURCES=canmessage.c logfile.c messagequeue.c modem.c smsmessage.c testmodul.c $ OBJECTS=$(SOURCES:.c=.o) EXECUTABLE=dataserver_static all: $(SOURCES) $(EXECUTABLE) $(EXECUTABLE): $(OBJECTS) $(CC) $(OBJECTS) $(LDFLAGS) -o $@ .c.o: $(CC) $(CFLAGS) $< -o $@ clean: rm -rf *.o But get a lot of errors like "undefined reference to `mxmlFindElement'" I don't know how to have that library included.? Please hlp, thanks in advance Magnus -- View this message in context: http://www.nabble.com/Problem-including-a-libraray...-tf3685127.html#a10300602 Sent from the gcc - Help mailing list archive at Nabble.com.