libnode/lib/Makefile
agibert 6ded620c00 Add lib subdir to libver,
Change _LIBVER_SUPPORT by LIBVER_SUPPORT.
2003-01-23 00:25:19 +00:00

20 lines
414 B
Makefile

ifdef LIBVER_SUPPORT
DEP += ../../libver/lib/ver.h
LIBDIR += -I ../../libver/lib
FLAG += -D_LIBVER_SUPPORT
endif
all: libnode.a libnode.so
libnode.o: libnode.c node.h libnode.h $(DEP) Makefile
gcc -c -g -o libnode.o $(FLAG) -I . $(LIBDIR) libnode.c
libnode.a: libnode.o
ar -r libnode.a libnode.o
libnode.so: libnode.o
ld -shared -o libnode.so libnode.o
clean:
rm -f libnode.o libnode.a libnode.so