Files
oopt-tai/stub/Makefile
Wataru Ishida 5bea26d46b stub: enhance overall functionality to enable more testing
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>
2019-02-06 17:03:14 -08:00

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