Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/tags/0.2.0-pre-alpha/scripts/Makefile.GLUT @ 3741

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

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

File size: 359 bytes
Line 
1
2ORXONOX_DIRS = ./core
3
4all: orxonox
5
6orxonox: $(ORXONOX_DIRS) finish
7
8$(ORXONOX_DIRS): FORCE
9        cd $@; $(MAKE)
10       
11finish:
12        @echo ""
13        @echo "Moving the binaries."
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.