2002-02-26 17:51:47 +01:00
|
|
|
ifdef _LIBVER_SUPPORT
|
|
|
|
INCLUDE_VER = ../../libver/ver.h
|
|
|
|
LIB_VER = -I ../../libver
|
|
|
|
endif
|
|
|
|
|
2002-02-26 00:37:21 +01:00
|
|
|
all: libnode.a libnode.so
|
2001-11-26 11:17:43 +01:00
|
|
|
|
2002-02-26 17:51:47 +01:00
|
|
|
libnode.o: libnode.c node.h libnode.h $(INCLUDE_VER) Makefile
|
|
|
|
gcc -c -g -o libnode.o -I . $(LIB_VER) libnode.c
|
2001-11-26 11:17:43 +01:00
|
|
|
|
2002-02-26 00:37:21 +01:00
|
|
|
libnode.a: libnode.o
|
|
|
|
ar -r libnode.a libnode.o
|
|
|
|
|
2001-11-26 11:17:43 +01:00
|
|
|
libnode.so: libnode.o
|
|
|
|
ld -shared -o libnode.so libnode.o
|
|
|
|
|
|
|
|
clean:
|
2002-02-26 00:37:21 +01:00
|
|
|
rm -f libnode.o libnode.a libnode.so
|