[BACK]Return to :q! CVS log [TXT][DIR] Up to [local] / ports / devel / sfml

Annotation of ports/devel/sfml/:q!, Revision 1.1.1.1

1.1       yason       1: $OpenBSD$
                      2: --- src/SFML/Audio/Makefile.orig       Wed Jan 27 17:00:19 2010
                      3: +++ src/SFML/Audio/Makefile    Thu Oct 27 13:02:52 2011
                      4: @@ -19,13 +19,13 @@ libsfml-audio-s.a: $(OBJ) $(OBJVORBIS)
                      5:        $(AR) $(ARFLAGS) $(LIBNAME) $(OBJ) $(OBJVORBIS)
                      6:  
                      7:  libsfml-audio.so: $(OBJ) $(OBJVORBIS)
                      8: -      $(CPP) $(LDFLAGS) -Wl,-soname,$(LIB).$(VERSION) -o $(LIBNAME) $(OBJ) $(OBJVORBIS) -lsndfile -lopenal
                      9: +      $(CXX) $(LDFLAGS) -Wl,-soname,$(LIB).$(VERSION) -o $(LIBNAME) $(OBJ) $(OBJVORBIS) -lsndfile -lopenal
                     10:  
                     11:  $(OBJ): %.o: %.cpp
                     12: -      $(CPP) -o $@ -c $< $(CFLAGS)
                     13: +      $(CXX) -o $@ -c $< $(CXXFLAGS)
                     14:  
                     15:  $(OBJVORBIS): %.o: %.c
                     16: -      $(CC) -o $@ -c $< $(CFLAGSEXT)
                     17: +      $(CC) -o $@ -c $< $(CFLAGS)
                     18:  
                     19:  .PHONY: clean mrproper
                     20:  
                     21: @@ -36,4 +36,4 @@ mrproper: clean
                     22:        @rm -rf $(LIBNAME)
                     23:  
                     24:  install:
                     25: -      @($(CP) $(LIBNAME) $(DESTLIBDIR) $(INSTALL))
                     26: +      $(BSD_INSTALL_DATA) $(LIBNAME) $(DESTLIBDIR)

CVSweb