Rev 138 | 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 $@ |
||
2 | pj | 18 | make -C drivers $@ |
19 | make -C fs $@ |
||
20 | make -C libc $@ |
||
21 | make -C ports $@ |
||
138 | trimarchi | 22 | |
23 | distrib: |
||
24 | ./distrib/mdistrib |
||
25 |