Arnaud G. GIBERT
ed0f5062df
- Comment out all functions exept DS_Library_Open , DS_Library_Close & DS_DataStruct_Open_I, and start to work on it!
23 lines
551 B
Makefile
23 lines
551 B
Makefile
SRC := libdatastr.c
|
|
TARGETS := libdatastr.a libdatastr.so
|
|
FILE_LIB := libdatastr.a libdatastr.so
|
|
|
|
|
|
|
|
include ../Makefile.var
|
|
include ../Makefile.rule
|
|
|
|
|
|
|
|
DEP += libdatastr.h ../include/datastr.h ../../liblog/include/log.h ../../libnode/include/node.h ../../libshmem/include/shmem.h Makefile
|
|
INCLUDE += -I . -I ../include -I ../../liblog/include -I ../../libnode/include -I ../../libshmem/include
|
|
|
|
ifdef _LIBVER_SUPPORT
|
|
DEP += ../../libver/ver.h
|
|
INCLUDE += -I ../../libver/lib
|
|
endif
|
|
|
|
|
|
|
|
libdatastr.o : libdatastr.c $(DEP)
|