]> git.llucax.com Git - software/makeit.git/blob - subproj/Build.mak
Make gen_rebuild_flags function call the shell
[software/makeit.git] / subproj / Build.mak
1
2 # Create the include directory symlink
3 setup_include_dir__ := $(call symlink_include_dir,otherproj)
4
5 # Build the shared library
6 $L/libotherproj.so: LINKER := $(CC)
7 $L/libotherproj.so: $(call find_objects,c)
8 all += otherproj
9
10 # Nice shortcut target
11 .PHONY: otherproj
12 otherproj: $L/libotherproj.so
13
14 # Install the shared library
15 $I/lib/libotherproj.so: $L/libotherproj.so
16 install += $I/lib/libotherproj.so
17
18 # Install the library's headers
19 $I/include/otherproj/%.h: $C/%.h
20         $(call install_file)
21 # XXX: we can't use += here, call will be resolved lazily if we do
22 install := $(install) $(call find_headers,h,$I/include/otherproj)
23