Lines Matching full:make
16 make clean
17 make
42 make -f Makefile.hello_cpp clean
43 make -f Makefile.hello_cpp hello_cpp
62 Makefile.lib in pndk/sample shows how to make either a shared library or a
66 Makefile.uselib then shows how to make an application that links against either
71 1) To make a shared library and an application that uses it:
73 make -f Makefile.lib clean
74 make -f Makefile.lib sharedlib
75 make -f Makefile.uselib clean
76 make -f Makefile.uselib use_hellolibrary-so
98 4) To make a static library:
100 make -f Makefile.lib clean
101 make -f Makefile.lib staticlib
102 make -f Makefile.uselib clean
103 make -f Makefile.uselib use_hellolibrary-a
119 To make everything execute the following:
121 make clean
122 make
123 make -f Makefile.lib clean
124 make -f Makefile.lib
125 make -f Makefile.uselib clean
126 make -f Makefile.uselib
127 make -f Makefile.hello_cpp clean
128 make -f Makefile.hello_cpp hello_cpp