23 lines
445 B
Makefile
23 lines
445 B
Makefile
SRC := libdatatstr.c
|
|
TARGETS := libdatatstr.a libdatatstr.so
|
|
FILE_LIB := libdatatstr.a libdatatstr.so
|
|
|
|
|
|
|
|
include ../Makefile.var
|
|
include ../Makefile.rule
|
|
|
|
|
|
|
|
DEP += libdatatstr.h ../include/datatstr.h ../../liblog/include/log.h Makefile
|
|
INCLUDE += -I . -I ../include -I ../../liblog/include
|
|
|
|
ifdef _LIBVER_SUPPORT
|
|
DEP += ../../libver/ver.h
|
|
INCLUDE += -I ../../libver/lib
|
|
endif
|
|
|
|
|
|
|
|
libdatatstr.o : libdatatstr.c $(DEP)
|