Update of /cvsroot/pure-data/externals/grill/flext/tutorial/stk1 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2605/tutorial/stk1
Modified Files: Makefile.am Log Message: build system for flext-based externals reconsidered flext::buffer:Update improved buffer handling added object construction and destruction flags updated autoconf system updated documentation updated build system
Index: Makefile.am =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/tutorial/stk1/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.am 28 Oct 2004 04:02:09 -0000 1.1 --- Makefile.am 6 Jan 2005 04:59:20 -0000 1.2 *************** *** 9,13 ****
EXTRA_DIST = main.cpp \ ! $(NAME).dsp \ $(NAME).vcproj
--- 9,13 ----
EXTRA_DIST = main.cpp \ ! $(NAME).mcp \ $(NAME).vcproj
*************** *** 16,25 **** @INCLUDEDIR@ \ -I../../source \ ! $(DEFS)
LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS))
! LIBS = @LIBS@
FRAMEWORKS = @FRAMEWORKS@ --- 16,26 ---- @INCLUDEDIR@ \ -I../../source \ ! $(DEFS) \ ! -DFLEXT_SHARED
LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS))
! LIBS = @LIBS@ -lflext
FRAMEWORKS = @FRAMEWORKS@ *************** *** 36,42 **** # ----------------------------- targets --------------------------------
- if STK all-local: $(OBJECTS) ! $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET)
--- 37,42 ---- # ----------------------------- targets --------------------------------
all-local: $(OBJECTS) ! $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET)
*************** *** 50,52 **** install-exec-local: install ../$(TARGET) $(SYSDIR)extra - endif \ No newline at end of file --- 50,51 ----