fixed samples makefile on Linux

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1271 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
laurentgom 2009-11-11 09:50:27 +00:00
parent 9c8843e85c
commit 15c81ba493

View File

@ -10,7 +10,7 @@ export CFLAGS = -W -Wall -ansi -I../../include $(DEBUGFLAGS)
export LDFLAGS = export LDFLAGS =
export EXECPATH = ../bin export EXECPATH = ../bin
all: ftp-sample opengl-sample pong-sample post-fx-sample qt-sample sockets-sample sound-sample sound_capture-sample voip-sample window-sample wxwidgets-sample X11-sample all: ftp-sample opengl-sample pong-sample shader-sample qt-sample sockets-sample sound-sample sound_capture-sample voip-sample window-sample wxwidgets-sample X11-sample
ftp-sample: ftp-sample:
@(mkdir -p bin) @(mkdir -p bin)
@ -24,9 +24,9 @@ pong-sample:
@(mkdir -p bin) @(mkdir -p bin)
@(cd ./pong && $(MAKE)) @(cd ./pong && $(MAKE))
post-fx-sample: shader-sample:
@(mkdir -p bin) @(mkdir -p bin)
@(cd ./post-fx && $(MAKE)) @(cd ./shader && $(MAKE))
qt-sample: qt-sample:
@(mkdir -p bin) @(mkdir -p bin)
@ -66,8 +66,8 @@ clean:
@(cd ./ftp && $(MAKE) $@ && \ @(cd ./ftp && $(MAKE) $@ && \
cd ../opengl && $(MAKE) $@ && \ cd ../opengl && $(MAKE) $@ && \
cd ../pong && $(MAKE) $@ && \ cd ../pong && $(MAKE) $@ && \
cd ../post-fx && $(MAKE) $@ && \
cd ../qt && $(MAKE) $@ && \ cd ../qt && $(MAKE) $@ && \
cd ../shader && $(MAKE) $@ && \
cd ../sockets && $(MAKE) $@ && \ cd ../sockets && $(MAKE) $@ && \
cd ../sound && $(MAKE) $@ && \ cd ../sound && $(MAKE) $@ && \
cd ../sound_capture && $(MAKE) $@ && \ cd ../sound_capture && $(MAKE) $@ && \
@ -80,8 +80,8 @@ mrproper: clean
@(cd ./ftp && $(MAKE) $@ && \ @(cd ./ftp && $(MAKE) $@ && \
cd ../opengl && $(MAKE) $@ && \ cd ../opengl && $(MAKE) $@ && \
cd ../pong && $(MAKE) $@ && \ cd ../pong && $(MAKE) $@ && \
cd ../post-fx && $(MAKE) $@ && \
cd ../qt && $(MAKE) $@ && \ cd ../qt && $(MAKE) $@ && \
cd ../shader && $(MAKE) $@ && \
cd ../sockets && $(MAKE) $@ && \ cd ../sockets && $(MAKE) $@ && \
cd ../sound && $(MAKE) $@ && \ cd ../sound && $(MAKE) $@ && \
cd ../sound_capture && $(MAKE) $@ && \ cd ../sound_capture && $(MAKE) $@ && \