Mercurial > hg > Game > Cerium
annotate TaskManager/Makefile @ 664:beb0f17c19f9 draft
word count
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 03 Dec 2009 00:20:28 +0900 |
parents | 9700abc5dd91 |
children | 1404b737a38d |
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 *~ \#* | |
607 | 31 cd $(KERN_MEM_DIR); rm -f *~ \#* |
109 | 32 cd $(KERN_SYSTASK_DIR); rm -f *~ \#* |
602
92b0d490e839
64bit mode try... not worked.
e075740@nw0740.st.ie.u-ryukyu.ac.jp
parents:
367
diff
changeset
|
33 cd $(KERN_MEM_DIR); rm -f *~ \#* |
109 | 34 cd $(IMPL_FIFO_DIR); rm -f *~ \#* |
35 cd $(IMPL_CELL_DIR); rm -f *~ \#* | |
36 rm -f $(KERN_MAIN_OBJS) $(KERN_PPE_OBJS) $(KERN_SPE_OBJS) \ | |
602
92b0d490e839
64bit mode try... not worked.
e075740@nw0740.st.ie.u-ryukyu.ac.jp
parents:
367
diff
changeset
|
37 $(KERN_SCHED_OBJS) $(KERN_SYSTASK_OBJS) $(KERN_MEM_OBJS) |
3 | 38 rm -f $(IMPL_FIFO_OBJS) $(IMPL_CELL_OBJS) |
74 | 39 $(MAKE) -f Makefile.cell cellclean |
80 | 40 $(MAKE) -f Makefile.fifo fifoclean |
367 | 41 rm -rf *.a ../include |
3 | 42 |
43 tags: | |
109 | 44 $(TAGS) $(TAGSOPTION) |