Last change
on this file since 2141 was
1860,
checked in by bensch, 21 years ago
|
orxonox/branches/gui: merged Version of branches/bensch and trunk and modified the makefile
|
File size:
329 bytes
|
Rev | Line | |
---|
[1853] | 1 | |
---|
| 2 | ORXONOX_DIRS = ./core |
---|
| 3 | |
---|
| 4 | all: orxonox |
---|
| 5 | |
---|
| 6 | orxonox: $(ORXONOX_DIRS) finish |
---|
| 7 | |
---|
| 8 | $(ORXONOX_DIRS): FORCE |
---|
| 9 | cd $@; $(MAKE) |
---|
| 10 | |
---|
| 11 | finish: |
---|
| 12 | @echo "" |
---|
| 13 | @mv -vf ./core/orxonox ./bin |
---|
| 14 | @echo "" |
---|
| 15 | @echo "now cd to ./bin and run orxonox" |
---|
| 16 | @echo "" |
---|
| 17 | |
---|
| 18 | clean: |
---|
| 19 | for i in $(ORXONOX_DIRS); do ( cd $$i ; $(MAKE) clean ) ; done |
---|
| 20 | -rm -f ./bin/* |
---|
| 21 | -rm -f *~ |
---|
| 22 | |
---|
| 23 | FORCE: |
---|
Note: See
TracBrowser
for help on using the repository browser.