Update of /cvsroot/pure-data/externals/grill/flext/tutorial/sndobj1
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2605/tutorial/sndobj1
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/sndobj1/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,14 ****
EXTRA_DIST = main.cpp \
! $(NAME).cw \
! $(NAME).dsp \
$(NAME).vcproj
--- 9,13 ----
EXTRA_DIST = main.cpp \
! $(NAME).mcp \
$(NAME).vcproj
***************
*** 17,26 ****
@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@
***************
*** 37,43 ****
# ----------------------------- targets --------------------------------
- if SNDOBJ
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)
***************
*** 51,53 ****
install-exec-local:
install ../$(TARGET) $(SYSDIR)extra
- endif
\ No newline at end of file
--- 50,51 ----