23 lines
348 B
Makefile
23 lines
348 B
Makefile
|
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)
|