- Initial creation.

This commit is contained in:
2024-04-17 10:50:09 +02:00
commit 29ff5acb9f
20 changed files with 2569 additions and 0 deletions

22
lib/Makefile Normal file
View File

@@ -0,0 +1,22 @@
SRC := liblog.c
TARGETS := liblog.a liblog.so
FILE_LIB := liblog.a liblog.so
include ../Makefile.var
include ../Makefile.rule
DEP += liblog.h ../include/log.h Makefile
INCLUDE += -I . -I ../include
ifdef _LIBVER_SUPPORT
DEP += ../../libver/ver.h
INCLUDE += -I ../../libver/lib
endif
liblog.o : liblog.c $(DEP)