mirror of
https://git.freebsd.org/ports.git
synced 2025-06-20 04:00:41 -04:00
You can see it as a modern, object-oriented alternative to SDL. SFML is composed of several packages to perfectly suit your needs. You can use SFML as a minimal windowing system to interface with OpenGL, or as a fully-featured multimedia library for building games or interactive programs. WWW: http://www.sfml-dev.org/index.php
15 lines
551 B
Text
15 lines
551 B
Text
--- src/SFML/Window/Makefile.orig 2009-05-28 19:57:08.000000000 +0400
|
|
+++ src/SFML/Window/Makefile 2009-07-07 19:51:46.000000000 +0400
|
|
@@ -18,10 +18,10 @@
|
|
$(AR) $(ARFLAGS) $(LIBNAME) $(OBJ)
|
|
|
|
libsfml-window.so: $(OBJ)
|
|
- $(CPP) $(LDFLAGS) -Wl,-soname,$(LIB).$(VERSION) -o $(LIBNAME) $(OBJ) $(OBJGLEW) -lX11 -lXrandr -lGL
|
|
+ $(CXX) $(LDFLAGS) -Wl,-soname,$(LIB).$(VERSION) -o $(LIBNAME) $(OBJ) $(OBJGLEW) -lX11 -lXrandr -lGL
|
|
|
|
$(OBJ): %.o: %.cpp
|
|
- $(CPP) -o $@ -c $< $(CFLAGS)
|
|
+ $(CXX) -o $@ -c $< $(CXXFLAGS)
|
|
|
|
.PHONY: clean mrproper
|
|
|