SFML/samples/build/make/Makefile
LaurentGom 3a17e35cac Created DLL build configurations for samples in Code::Blocks and Visual C++ project files
Removed unused stuff from extlibs headers
Removed source files from generated API documentation
Removed the qt and wxwidgets samples
Fixed minor warnings in Packet.cpp

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1499 4e206d99-4929-0410-ac5d-dfc041789085
2010-04-08 16:18:38 +00:00

18 lines
406 B
Makefile

export SRCROOT = ../..
export BINPATH = ../../bin
export CPP = g++
export CFLAGS = -W -Wall -ansi -g -O2 -DNDEBUG -I../../include
export SAMPLES = ftp opengl pong shader sockets sound sound_capture voip window X11
all: $(SAMPLES)
$(SAMPLES):
mkdir -p $(BINPATH)
$(MAKE) -f Makefile.$@
clean mrproper:
for sample in $(SAMPLES); do $(MAKE) $@ -f Makefile.$${sample}; done
.PHONY: clean mrproper