Fixed "lib" directory not created before building libraries, in SFML and CSFML Linux makefiles

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/trunk@1231 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
LaurentGom 2009-10-08 07:08:34 +00:00
parent 58db9f25b1
commit 49b97bb09a
3 changed files with 22 additions and 0 deletions

View file

@ -34,18 +34,23 @@ export DESTINCDIR = $(DESTDIR)/include
all: sfml-system sfml-window sfml-network sfml-graphics sfml-audio
sfml-system:
@(mkdir -p ../../lib)
@(cd ./System && $(MAKE))
sfml-window:
@(mkdir -p ../../lib)
@(cd ./Window && $(MAKE))
sfml-network:
@(mkdir -p ../../lib)
@(cd ./Network && $(MAKE))
sfml-graphics:
@(mkdir -p ../../lib)
@(cd ./Graphics && $(MAKE))
sfml-audio:
@(mkdir -p ../../lib)
@(cd ./Audio && $(MAKE))
.PHONY: clean mrproper