Subversion Repositories HelenOS

Rev

Rev 3884 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3884 Rev 3895
Line 27... Line 27...
27
#
27
#
28
 
28
 
29
## Include configuration
29
## Include configuration
30
#
30
#
31
 
31
 
32
-include Makefile.config
32
.PHONY: all config distclean clean cscope
33
 
33
 
34
.PHONY: all build config distclean clean cscope
-
 
35
 
-
 
36
all:
-
 
37
	tools/config.py HelenOS.config default
-
 
38
	$(MAKE) -C . build
-
 
39
 
-
 
40
build: Makefile.config config.h config.defs
34
all: Makefile.config config.h config.defs
41
	$(MAKE) -C kernel
35
	$(MAKE) -C kernel
42
	$(MAKE) -C uspace
36
	$(MAKE) -C uspace
43
	$(MAKE) -C boot
37
	$(MAKE) -C boot
44
 
38
 
-
 
39
Makefile.config config.h config.defs: HelenOS.config
45
config: HelenOS.config
40
	tools/config.py HelenOS.config default
-
 
41
 
-
 
42
config:
46
	tools/config.py HelenOS.config
43
	tools/config.py HelenOS.config
47
 
44
 
48
distclean: clean
45
distclean: clean
49
	rm -f Makefile.config config.h config.defs tools/*.pyc
46
	rm -f Makefile.config config.h config.defs tools/*.pyc
50
 
47