The following commit has been merged in the master branch: commit 1397773f0fa9ea1823c44b663bb70887856606d1 Author: Stefan Sperling stsp@stsp.in-berlin.de Date: Wed Sep 6 00:23:22 2006 +0200
Make static linking possible.
diff --git a/Makefile b/Makefile index f3c8db7..b2ef3a8 100755 --- a/Makefile +++ b/Makefile @@ -19,6 +19,7 @@ CC = gcc CFLAGS = -Wall -O0 -g3 LDFLAGS = -lpthread +#LDFLAGS = -static -lpthread
UNAME=$(shell uname)
@@ -35,6 +36,7 @@ OS_OBJ= posix.o freebsd.o endif
batman: batman.o $(OS_OBJ) + $(CC) -o $@ batman.o $(OS_OBJ) $(LDFLAGS)
clean: rm -f batman *.o *~