Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/scripts/Makefile.all @ 1928

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

orxonox/trunk: now copies gui to bin-directory, typo.

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