Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

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

File size: 411 bytes
Line 
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        @echo "Moving the binaries."
15        @mv -vf ./core/orxonox ./bin
16        @mv -vf ./gui/orxonox_gui ./bin
17        @echo ""
18
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.