2002-02-26 17:51:47 +01:00
|
|
|
ifdef _LIBVER_SUPPORT
|
2003-01-17 09:04:24 +01:00
|
|
|
DEP += ../../libver/ver.h
|
|
|
|
LIBDIR += -I ../../libver
|
|
|
|
FLAG += -D_LIBVER_SUPPORT
|
2002-02-26 17:51:47 +01:00
|
|
|
endif
|
|
|
|
|
2002-02-26 00:37:21 +01:00
|
|
|
all: libnode.a libnode.so
|
2001-11-26 11:17:43 +01:00
|
|
|
|
2003-01-17 09:04:24 +01:00
|
|
|
libnode.o: libnode.c node.h libnode.h $(DEP) Makefile
|
|
|
|
gcc -c -g -o libnode.o $(FLAG) -I . $(LIBDIR) 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
|