diff options
Diffstat (limited to 'tools/depends/Makefile')
-rw-r--r-- | tools/depends/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tools/depends/Makefile b/tools/depends/Makefile new file mode 100644 index 0000000..8f53370 --- /dev/null +++ b/tools/depends/Makefile @@ -0,0 +1,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 + |