Last change
on this file since 1867 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:
347 bytes
|
Rev | Line | |
---|
[1860] | 1 | |
---|
| 2 | ORXONOX_DIRS = ./core \ |
---|
| 3 | ./gui |
---|
| 4 | |
---|
| 5 | all: orxonox |
---|
| 6 | |
---|
| 7 | orxonox: $(ORXONOX_DIRS) finish |
---|
| 8 | |
---|
| 9 | $(ORXONOX_DIRS): FORCE |
---|
| 10 | cd $@; $(MAKE) |
---|
| 11 | |
---|
| 12 | finish: |
---|
| 13 | @echo "" |
---|
| 14 | @mv -vf ./core/orxonox ./bin |
---|
| 15 | @echo "" |
---|
| 16 | @echo "now cd to ./bin and run orxonox" |
---|
| 17 | @echo "" |
---|
| 18 | |
---|
| 19 | clean: |
---|
| 20 | for i in $(ORXONOX_DIRS); do ( cd $$i ; $(MAKE) clean ) ; done |
---|
| 21 | -rm -f ./bin/* |
---|
| 22 | -rm -f *~ |
---|
| 23 | |
---|
| 24 | FORCE: |
---|
Note: See
TracBrowser
for help on using the repository browser.