Changed the output names of SFML libraries in projects/makefiles (sfml-xxx -> sfml2-xxx)

Fixed OpenAL include path in Linux makefiles

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1555 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
LaurentGom 2010-08-27 21:37:50 +00:00
parent 3ba0e73719
commit 8525a7cb92
44 changed files with 252 additions and 252 deletions

View file

@ -1,7 +1,7 @@
EXE = window
SRC = $(wildcard $(SRCROOT)/$(EXE)/*.cpp)
OBJ = $(SRC:.cpp=.o)
LDFLAGS = -lsfml-window -lsfml-system -lGLU -lGL
LDFLAGS = -lsfml2-window -lsfml2-system -lGLU -lGL
all: $(EXE)