- Start to the 2.0.x work!

- Import file structure from LibNode & LibShMem...
This commit is contained in:
2024-04-20 09:01:52 +02:00
parent dbebe02bdf
commit 7cf70f0f3c
18 changed files with 1888 additions and 0 deletions

22
lib/Makefile Normal file
View File

@@ -0,0 +1,22 @@
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)