Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/gui/scripts/Makefile.all @ 1860

Last change on this file since 1860 was 1860, checked in by bensch, 20 years ago

orxonox/branches/gui: merged Version of branches/bensch and trunk and modified the makefile

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