Mercurial > hg > Members > kono > Cerium
annotate TaskManager/Makefile @ 602:1733f3cbfa28
64bit mode try... not worked.
author | e075740@nw0740.st.ie.u-ryukyu.ac.jp |
---|---|
date | Fri, 06 Nov 2009 21:20:26 +0900 |
parents | c7a4818cdfcb |
children | 6b865e046710 |
rev | line source |
---|---|
3 | 1 include ./Makefile.def |
2 | |
3 TAGS = gtags | |
4 TAGSOPTION = | |
5 TAGSFILE = GPATH GRTAGS GSYMS GTAGS | |
6 | |
7 default: fifo | |
8 | |
9 fifo: FORCE | |
10 @$(MAKE) -f Makefile.fifo | |
11 | |
12 cell: FORCE | |
13 @$(MAKE) -f Makefile.cell | |
14 | |
15 FORCE: | |
367 | 16 -mkdir -p ../include/TaskManager |
17 rsync `find . -name Test -prune -or -name '*.h' -print` ../include/TaskManager | |
3 | 18 |
19 distclean: clean | |
20 rm -f $(TAGSFILE) | |
80 | 21 $(MAKE) -f Makefile.cell celldistclean |
22 $(MAKE) -f Makefile.fifo fifodistclean | |
3 | 23 |
24 clean: | |
25 rm -f *~ \#* | |
26 rm -f $(TARGET) | |
109 | 27 cd $(KERN_DIR); rm -f *~ \#* |
28 cd $(KERN_PPE_DIR); rm -f *~ \#* | |
29 cd $(KERN_SPE_DIR); rm -f *~ \#* | |
30 cd $(KERN_SCHED_DIR); rm -f *~ \#* | |
31 cd $(KERN_SYSTASK_DIR); rm -f *~ \#* | |
602
1733f3cbfa28
64bit mode try... not worked.
e075740@nw0740.st.ie.u-ryukyu.ac.jp
parents:
367
diff
changeset
|
32 cd $(KERN_MEM_DIR); rm -f *~ \#* |
109 | 33 cd $(IMPL_FIFO_DIR); rm -f *~ \#* |
34 cd $(IMPL_CELL_DIR); rm -f *~ \#* | |
35 rm -f $(KERN_MAIN_OBJS) $(KERN_PPE_OBJS) $(KERN_SPE_OBJS) \ | |
602
1733f3cbfa28
64bit mode try... not worked.
e075740@nw0740.st.ie.u-ryukyu.ac.jp
parents:
367
diff
changeset
|
36 $(KERN_SCHED_OBJS) $(KERN_SYSTASK_OBJS) $(KERN_MEM_OBJS) |
3 | 37 rm -f $(IMPL_FIFO_OBJS) $(IMPL_CELL_OBJS) |
74 | 38 $(MAKE) -f Makefile.cell cellclean |
80 | 39 $(MAKE) -f Makefile.fifo fifoclean |
367 | 40 rm -rf *.a ../include |
3 | 41 |
42 tags: | |
109 | 43 $(TAGS) $(TAGSOPTION) |