added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / libs / thread / mmakefile.src
blob299fa0a5a0fe6ad9f6c039b8ee2598af86a791d1
1 include $(TOP)/config/make.cfg
3 FILES := thread_init
5 FUNCS := \
6         createthread \
7         waitthread \
8         waitallthreads \
9         detachthread \
10         currentthread \
11         createmutex \
12         destroymutex \
13         lockmutex \
14         trylockmutex \
15         unlockmutex \
16         createcondition \
17         destroycondition \
18         waitcondition \
19         signalcondition \
20         broadcastcondition
22 #MM workbench-libs-thread-includes : \
23 #MM    kernel-exec-includes \
24 #MM    includes-copy
25 #MM- workbench-libs-thread : linklibs
27 %build_module mmake=workbench-libs-thread \
28     modname=thread modtype=library \
29     files="$(FILES) $(FUNCS)" \
30     uselibs="rom"
32 %common