mirror of
https://github.com/Telecominfraproject/oopt-tai.git
synced 2025-12-31 02:20:44 +00:00
stub library was just a reference example for TAI library implementers. This patch adds more functionality to be able to test other TAI components like taish using stub library. Major updates are - add storage to store attributes which are set - call module_presence callback - use meta library instead of switch statements to automatically support newly added attributes Signed-off-by: Wataru Ishida <ishida@nel-america.com>
9 lines
150 B
Makefile
9 lines
150 B
Makefile
LIB := -L ../meta/ -lmetatai
|
|
INCLUDE := -I ../meta -I ../inc
|
|
|
|
all:
|
|
gcc -shared -fPIC $(INCLUDE) stub_tai.c -o libtai.so $(LIB)
|
|
|
|
clean:
|
|
rm libtai.so
|