18 lines
661 B
Makefile
18 lines
661 B
Makefile
ifdef _LIBVER_SUPPORT
|
|
DEP_VER_STATIC = ../../libver/ver.h ../../libver/libver.a
|
|
DEP_VER_DYNAMIC = ../../libver/ver.h ../../libver/libver.so
|
|
LIB_VER_STATIC = -I ../../libver ../../libver/libver.a
|
|
LIB_VER_DYNAMIC = -I ../../libver -L ../../libver -lver
|
|
endif
|
|
|
|
all: ndbench ndbench-static
|
|
|
|
ndbench-static: ndbench.c $(DEP_VER_STATIC) ../lib/node.h ../lib/libnode.a Makefile
|
|
gcc -g -o ndbench-static -I ../lib ndbench.c -ldl $(LIB_VER_STATIC) ../lib/libnode.a
|
|
|
|
ndbench: ndbench.c $(DEP_VER_DYNAMIC) ../lib/node.h ../lib/libnode.so Makefile
|
|
gcc -g -o ndbench -ldl $(LIB_VER_DYNAMIC) -I ../lib -L ../lib -lnode ndbench.c
|
|
|
|
clean:
|
|
rm -f ndbench ndbench-static
|