blob: 8f5337082d31428c25b248b9ea0300ac0a070219 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
include Makefile.include
NATIVE=native/.installed-$(NATIVEPLATFORM)
target=target/.installed-$(PLATFORM)
all: $(target)
$(NATIVE):
$(MAKE) -C native
$(target): $(NATIVE)
$(MAKE) -C target
clean:
$(MAKE) -C native clean
$(MAKE) -C target clean
test-dependencies:
$(MAKE) -C native test-dependencies
$(MAKE) -C native
$(MAKE) -C target test-dependencies
distclean::
$(MAKE) -C native distclean
$(MAKE) -C target distclean
|