crossplatform.mk: add cygwin detection for disabling windows shell tools and path...
[sdk] / ear / Makefile
1 ifneq ($(V),1)
2 .SILENT:
3 endif
4 .PHONY: all nores cleantarget clean realclean distclean
5
6 _CF_DIR = ../
7
8 include $(_CF_DIR)crossplatform.mk
9 include $(_CF_DIR)default.cf
10
11 all:
12         @$(call echo,Building self-extract tool...)
13         +cd extract && $(_MAKE)
14         @$(call echo,Building eAR command line tool...)
15         +cd cmd && $(_MAKE)
16
17 nores:
18         @$(call echo,Building eAR command line tool...)
19         +cd cmd && $(_MAKE) nores
20
21 cleantarget:
22         +cd extract && $(_MAKE) cleantarget
23         +cd cmd && $(_MAKE) cleantarget
24
25 clean:
26         +cd extract && $(_MAKE) clean
27         +cd cmd && $(_MAKE) clean
28
29 realclean:
30         +cd extract && $(_MAKE) realclean
31         +cd cmd && $(_MAKE) realclean
32
33 distclean:
34         $(MAKE) -f $(_CF_DIR)Cleanfile distclean distclean_all_subdirs
35
36 Makefile: ;
37 $(_CF_DIR)crossplatform.mk: ;
38 $(_CF_DIR)default.cf: ;