libnode/util/Makefile
2003-01-17 17:07:41 +00:00

28 lines
847 B
Makefile

ifdef _LIBVER_SUPPORT
DEP_STATIC += ../../libver/ver.h ../../libver/libver.a
DEP_DYNAMIC += ../../libver/ver.h ../../libver/libver.so
INCLUDE += -I ../../libver
LIBDIR += -L ../../libver
ifeq ($(OSTYPE),linux-gnu)
LIB_STATIC += ../../libver/libver.a
LIB_DYNAMIC += -lver
else
LIB_STATIC += -ldl ../../libver/libver.a
LIB_DYNAMIC += -ldl -lver
endif
FLAG_VER = -D_LIBVER_SUPPORT
endif
all: ndbench ndbench-static
ndbench-static: ndbench.c $(DEP_STATIC) ../lib/node.h ../lib/libnode.a Makefile
gcc -g -o ndbench-static $(FLAG_VER) $(INCLUDE) -I ../lib ndbench.c $(LIB_STATIC) ../lib/libnode.a
ndbench: ndbench.c $(DEP_DYNAMIC) ../lib/node.h ../lib/libnode.so Makefile
gcc -g -o ndbench -ldl $(FLAG_VER) $(INCLUDE) -I ../lib $(LIBDIR) -L ../lib $(LIB_DYNAMIC) -lnode ndbench.c
clean:
rm -f ndbench ndbench-static