File: Makefile

package info (click to toggle)
ecere-sdk 0.44.15-1
  • links: PTS
  • area: main
  • in suites: sid, stretch
  • size: 97,712 kB
  • ctags: 54,695
  • sloc: ansic: 593,042; makefile: 12,250; yacc: 4,955; lex: 707; objc: 259; python: 252; xml: 102
file content (38 lines) | stat: -rw-r--r-- 767 bytes parent folder | download
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
26
27
28
29
30
31
32
33
34
35
36
37
38
ifneq ($(V),1)
.SILENT:
endif
.PHONY: all nores cleantarget clean realclean distclean

_CF_DIR = ../

include $(_CF_DIR)crossplatform.mk
include $(_CF_DIR)default.cf

all:
	@$(call echo,Building self-extract tool...)
	+cd extract && $(_MAKE)
	@$(call echo,Building eAR command line tool...)
	+cd cmd && $(_MAKE)

nores:
	@$(call echo,Building eAR command line tool...)
	+cd cmd && $(_MAKE) nores

cleantarget:
	+cd extract && $(_MAKE) cleantarget
	+cd cmd && $(_MAKE) cleantarget

clean:
	+cd extract && $(_MAKE) clean
	+cd cmd && $(_MAKE) clean

realclean:
	+cd extract && $(_MAKE) realclean
	+cd cmd && $(_MAKE) realclean

distclean:
	$(MAKE) -f $(_CF_DIR)Cleanfile distclean distclean_all_subdirs

Makefile: ;
$(_CF_DIR)crossplatform.mk: ;
$(_CF_DIR)default.cf: ;