Subversion Repositories shark

Rev

Rev 967 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 pj 1
#
30 pj 2
# Main S.Ha.R.K. makefile
2 pj 3
#
4
 
5
ifndef BASE
6
BASE=.
7
endif
64 pj 8
 
2 pj 9
include $(BASE)/config/config.mk
10
 
11
#
12
 
149 trimarchi 13
.PHONY: install all clean cleanall distrib depend
2 pj 14
 
15
install all clean cleanall depend:
45 pj 16
	make -C $(OSLIB) $@
17
	make -C kernel $@
967 pj 18
	make -C modules $@
2 pj 19
	make -C drivers $@
20
	make -C fs $@
1026 mauro 21
	make -C lib $@
2 pj 22
	make -C libc $@
23
	make -C ports $@
356 giacomo 24
	make -C tracer $@
138 trimarchi 25