Modified the Linux build system so that makefiles are now outside the source tree
git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1477 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
parent
fd8fa4e2f8
commit
ca5489a5d6
21 changed files with 477 additions and 21 deletions
21
Makefile
21
Makefile
|
@ -1,19 +1,8 @@
|
|||
|
||||
all: sfml
|
||||
|
||||
sfml:
|
||||
@(cd ./src/SFML && $(MAKE))
|
||||
|
||||
sfml-samples:
|
||||
@(cd ./samples && $(MAKE))
|
||||
|
||||
install:
|
||||
@(cd ./src/SFML && $(MAKE) $@)
|
||||
|
||||
clean:
|
||||
@(cd ./src/SFML && $(MAKE) $@)
|
||||
@(cd ./samples && $(MAKE) $@)
|
||||
|
||||
mrproper:
|
||||
@(cd ./src/SFML && $(MAKE) $@)
|
||||
@(cd ./samples && $(MAKE) $@)
|
||||
sfml samples install clean mrproper:
|
||||
cd ./build/make && $(MAKE) $@
|
||||
|
||||
.PHONY: samples
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue