From ed4ce25dc69fd6361f7655a3ab5d05186754316c Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Thu, 6 Jan 2005 04:59:21 +0000 Subject: 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 svn path=/trunk/; revision=2467 --- externals/grill/flext/tutorial/Makefile.am | 1 - externals/grill/flext/tutorial/adv1/Makefile.am | 12 ++++++------ externals/grill/flext/tutorial/adv2/Makefile.am | 12 ++++++------ externals/grill/flext/tutorial/adv3/Makefile.am | 12 ++++++------ externals/grill/flext/tutorial/attr1/Makefile.am | 12 ++++++------ externals/grill/flext/tutorial/attr2/Makefile.am | 12 ++++++------ externals/grill/flext/tutorial/attr3/Makefile.am | 12 ++++++------ externals/grill/flext/tutorial/bind1/Makefile.am | 12 ++++++------ externals/grill/flext/tutorial/buffer1/Makefile.am | 12 ++++++------ externals/grill/flext/tutorial/lib1/Makefile.am | 12 ++++++------ externals/grill/flext/tutorial/signal1/Makefile.am | 12 ++++++------ externals/grill/flext/tutorial/signal2/Makefile.am | 12 ++++++------ externals/grill/flext/tutorial/simple1/Makefile.am | 12 ++++++------ externals/grill/flext/tutorial/simple2/Makefile.am | 12 ++++++------ externals/grill/flext/tutorial/simple3/Makefile.am | 12 ++++++------ externals/grill/flext/tutorial/sndobj1/Makefile.am | 12 +++++------- externals/grill/flext/tutorial/stk1/Makefile.am | 11 +++++------ externals/grill/flext/tutorial/stk2/Makefile.am | 11 +++++------ externals/grill/flext/tutorial/thread1/Makefile.am | 12 ++++++------ externals/grill/flext/tutorial/thread2/Makefile.am | 12 ++++++------ externals/grill/flext/tutorial/timer1/Makefile.am | 12 ++++++------ 21 files changed, 117 insertions(+), 122 deletions(-) (limited to 'externals/grill/flext/tutorial') diff --git a/externals/grill/flext/tutorial/Makefile.am b/externals/grill/flext/tutorial/Makefile.am index 0a119998..f3247e81 100644 --- a/externals/grill/flext/tutorial/Makefile.am +++ b/externals/grill/flext/tutorial/Makefile.am @@ -29,7 +29,6 @@ SUBDIRS = \ EXTRA_DIST = \ readme.txt \ gpl.txt \ - tutorial.dsw \ tutorial.sln DIST_SUBDIRS = pd \ diff --git a/externals/grill/flext/tutorial/adv1/Makefile.am b/externals/grill/flext/tutorial/adv1/Makefile.am index 4bfe72f6..ba556deb 100644 --- a/externals/grill/flext/tutorial/adv1/Makefile.am +++ b/externals/grill/flext/tutorial/adv1/Makefile.am @@ -8,20 +8,20 @@ NAME = adv1 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).cw \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -37,7 +37,7 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -48,4 +48,4 @@ clean-local: rm -f ./$(OBJECTS) install-exec-local: - install ../$(TARGET) $(SYSDIR)extra \ No newline at end of file + install ../$(TARGET) $(SYSDIR)extra diff --git a/externals/grill/flext/tutorial/adv2/Makefile.am b/externals/grill/flext/tutorial/adv2/Makefile.am index 17ba9d45..efd61012 100644 --- a/externals/grill/flext/tutorial/adv2/Makefile.am +++ b/externals/grill/flext/tutorial/adv2/Makefile.am @@ -8,20 +8,20 @@ NAME = adv2 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).cw \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -37,7 +37,7 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -48,4 +48,4 @@ clean-local: rm -f ./$(OBJECTS) install-exec-local: - install ../$(TARGET) $(SYSDIR)extra \ No newline at end of file + install ../$(TARGET) $(SYSDIR)extra diff --git a/externals/grill/flext/tutorial/adv3/Makefile.am b/externals/grill/flext/tutorial/adv3/Makefile.am index e069be64..5eadc6aa 100644 --- a/externals/grill/flext/tutorial/adv3/Makefile.am +++ b/externals/grill/flext/tutorial/adv3/Makefile.am @@ -8,20 +8,20 @@ NAME = adv3 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).cw \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -37,7 +37,7 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -48,4 +48,4 @@ clean-local: rm -f ./$(OBJECTS) install-exec-local: - install ../$(TARGET) $(SYSDIR)extra \ No newline at end of file + install ../$(TARGET) $(SYSDIR)extra diff --git a/externals/grill/flext/tutorial/attr1/Makefile.am b/externals/grill/flext/tutorial/attr1/Makefile.am index d8242700..531eace6 100644 --- a/externals/grill/flext/tutorial/attr1/Makefile.am +++ b/externals/grill/flext/tutorial/attr1/Makefile.am @@ -8,20 +8,20 @@ NAME = attr1 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).cw \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -37,7 +37,7 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -48,4 +48,4 @@ clean-local: rm -f ./$(OBJECTS) install-exec-local: - install ../$(TARGET) $(SYSDIR)extra \ No newline at end of file + install ../$(TARGET) $(SYSDIR)extra diff --git a/externals/grill/flext/tutorial/attr2/Makefile.am b/externals/grill/flext/tutorial/attr2/Makefile.am index e0fe461e..f1a6a347 100644 --- a/externals/grill/flext/tutorial/attr2/Makefile.am +++ b/externals/grill/flext/tutorial/attr2/Makefile.am @@ -8,20 +8,20 @@ NAME = attr2 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).cw \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -37,7 +37,7 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -48,4 +48,4 @@ clean-local: rm -f ./$(OBJECTS) install-exec-local: - install ../$(TARGET) $(SYSDIR)extra \ No newline at end of file + install ../$(TARGET) $(SYSDIR)extra diff --git a/externals/grill/flext/tutorial/attr3/Makefile.am b/externals/grill/flext/tutorial/attr3/Makefile.am index c25aa864..a94ce0f8 100644 --- a/externals/grill/flext/tutorial/attr3/Makefile.am +++ b/externals/grill/flext/tutorial/attr3/Makefile.am @@ -8,20 +8,20 @@ NAME = attr3 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).cw \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -37,7 +37,7 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -48,4 +48,4 @@ clean-local: rm -f ./$(OBJECTS) install-exec-local: - install ../$(TARGET) $(SYSDIR)extra \ No newline at end of file + install ../$(TARGET) $(SYSDIR)extra diff --git a/externals/grill/flext/tutorial/bind1/Makefile.am b/externals/grill/flext/tutorial/bind1/Makefile.am index a338451c..8e360f2f 100644 --- a/externals/grill/flext/tutorial/bind1/Makefile.am +++ b/externals/grill/flext/tutorial/bind1/Makefile.am @@ -8,20 +8,20 @@ NAME = bind1 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).cw \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -37,7 +37,7 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -48,4 +48,4 @@ clean-local: rm -f ./$(OBJECTS) install-exec-local: - install ../$(TARGET) $(SYSDIR)extra \ No newline at end of file + install ../$(TARGET) $(SYSDIR)extra diff --git a/externals/grill/flext/tutorial/buffer1/Makefile.am b/externals/grill/flext/tutorial/buffer1/Makefile.am index 76d31298..a11d11be 100644 --- a/externals/grill/flext/tutorial/buffer1/Makefile.am +++ b/externals/grill/flext/tutorial/buffer1/Makefile.am @@ -8,20 +8,20 @@ NAME = buffer1 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).cw \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -37,7 +37,7 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -48,4 +48,4 @@ clean-local: rm -f ./$(OBJECTS) install-exec-local: - install ../$(TARGET) $(SYSDIR)extra \ No newline at end of file + install ../$(TARGET) $(SYSDIR)extra diff --git a/externals/grill/flext/tutorial/lib1/Makefile.am b/externals/grill/flext/tutorial/lib1/Makefile.am index 990a7ff3..e9865545 100644 --- a/externals/grill/flext/tutorial/lib1/Makefile.am +++ b/externals/grill/flext/tutorial/lib1/Makefile.am @@ -8,20 +8,20 @@ NAME = lib1 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).cw \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -37,7 +37,7 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -48,4 +48,4 @@ clean-local: rm -f ./$(OBJECTS) install-exec-local: - install ../$(TARGET) $(SYSDIR)extra \ No newline at end of file + install ../$(TARGET) $(SYSDIR)extra diff --git a/externals/grill/flext/tutorial/signal1/Makefile.am b/externals/grill/flext/tutorial/signal1/Makefile.am index 8d0b9ef5..98c237c0 100644 --- a/externals/grill/flext/tutorial/signal1/Makefile.am +++ b/externals/grill/flext/tutorial/signal1/Makefile.am @@ -8,20 +8,20 @@ NAME = signal1 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).cw \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -37,7 +37,7 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -48,4 +48,4 @@ clean-local: rm -f ./$(OBJECTS) install-exec-local: - install ../$(TARGET) $(SYSDIR)extra \ No newline at end of file + install ../$(TARGET) $(SYSDIR)extra diff --git a/externals/grill/flext/tutorial/signal2/Makefile.am b/externals/grill/flext/tutorial/signal2/Makefile.am index 6f246497..30ccfda0 100644 --- a/externals/grill/flext/tutorial/signal2/Makefile.am +++ b/externals/grill/flext/tutorial/signal2/Makefile.am @@ -8,20 +8,20 @@ NAME = signal2 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).cw \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -37,7 +37,7 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -48,4 +48,4 @@ clean-local: rm -f ./$(OBJECTS) install-exec-local: - install ../$(TARGET) $(SYSDIR)extra \ No newline at end of file + install ../$(TARGET) $(SYSDIR)extra diff --git a/externals/grill/flext/tutorial/simple1/Makefile.am b/externals/grill/flext/tutorial/simple1/Makefile.am index 2d19d7ea..f7cb220e 100644 --- a/externals/grill/flext/tutorial/simple1/Makefile.am +++ b/externals/grill/flext/tutorial/simple1/Makefile.am @@ -8,20 +8,20 @@ NAME = simple1 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).cw \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -37,7 +37,7 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -48,4 +48,4 @@ clean-local: rm -f ./$(OBJECTS) install-exec-local: - install ../$(TARGET) $(SYSDIR)extra \ No newline at end of file + install ../$(TARGET) $(SYSDIR)extra diff --git a/externals/grill/flext/tutorial/simple2/Makefile.am b/externals/grill/flext/tutorial/simple2/Makefile.am index 777d2c95..60a3fde4 100644 --- a/externals/grill/flext/tutorial/simple2/Makefile.am +++ b/externals/grill/flext/tutorial/simple2/Makefile.am @@ -8,20 +8,20 @@ NAME = simple2 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).cw \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -37,7 +37,7 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -48,4 +48,4 @@ clean-local: rm -f ./$(OBJECTS) install-exec-local: - install ../$(TARGET) $(SYSDIR)extra \ No newline at end of file + install ../$(TARGET) $(SYSDIR)extra diff --git a/externals/grill/flext/tutorial/simple3/Makefile.am b/externals/grill/flext/tutorial/simple3/Makefile.am index 41df9488..9c610387 100644 --- a/externals/grill/flext/tutorial/simple3/Makefile.am +++ b/externals/grill/flext/tutorial/simple3/Makefile.am @@ -8,20 +8,20 @@ NAME = simple3 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).cw \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -37,7 +37,7 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -48,4 +48,4 @@ clean-local: rm -f ./$(OBJECTS) install-exec-local: - install ../$(TARGET) $(SYSDIR)extra \ No newline at end of file + install ../$(TARGET) $(SYSDIR)extra diff --git a/externals/grill/flext/tutorial/sndobj1/Makefile.am b/externals/grill/flext/tutorial/sndobj1/Makefile.am index eb7ac446..2c9b1436 100644 --- a/externals/grill/flext/tutorial/sndobj1/Makefile.am +++ b/externals/grill/flext/tutorial/sndobj1/Makefile.am @@ -8,20 +8,20 @@ NAME = sndobj1 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).cw \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -36,9 +36,8 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- -if SNDOBJ all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -50,4 +49,3 @@ clean-local: install-exec-local: install ../$(TARGET) $(SYSDIR)extra -endif \ No newline at end of file diff --git a/externals/grill/flext/tutorial/stk1/Makefile.am b/externals/grill/flext/tutorial/stk1/Makefile.am index ea6e881a..dd6c86d1 100644 --- a/externals/grill/flext/tutorial/stk1/Makefile.am +++ b/externals/grill/flext/tutorial/stk1/Makefile.am @@ -8,19 +8,20 @@ NAME = stk1 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -35,9 +36,8 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- -if STK all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -49,4 +49,3 @@ clean-local: install-exec-local: install ../$(TARGET) $(SYSDIR)extra -endif \ No newline at end of file diff --git a/externals/grill/flext/tutorial/stk2/Makefile.am b/externals/grill/flext/tutorial/stk2/Makefile.am index a5293c67..93c7b6b9 100644 --- a/externals/grill/flext/tutorial/stk2/Makefile.am +++ b/externals/grill/flext/tutorial/stk2/Makefile.am @@ -8,19 +8,20 @@ NAME = stk2 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -35,9 +36,8 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- -if STK all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -49,4 +49,3 @@ clean-local: install-exec-local: install ../$(TARGET) $(SYSDIR)extra -endif \ No newline at end of file diff --git a/externals/grill/flext/tutorial/thread1/Makefile.am b/externals/grill/flext/tutorial/thread1/Makefile.am index fd5fd540..268b3625 100644 --- a/externals/grill/flext/tutorial/thread1/Makefile.am +++ b/externals/grill/flext/tutorial/thread1/Makefile.am @@ -8,20 +8,20 @@ NAME = thread1 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).cw \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -37,7 +37,7 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -48,4 +48,4 @@ clean-local: rm -f ./$(OBJECTS) install-exec-local: - install ../$(TARGET) $(SYSDIR)extra \ No newline at end of file + install ../$(TARGET) $(SYSDIR)extra diff --git a/externals/grill/flext/tutorial/thread2/Makefile.am b/externals/grill/flext/tutorial/thread2/Makefile.am index c361a450..2e5c4e09 100644 --- a/externals/grill/flext/tutorial/thread2/Makefile.am +++ b/externals/grill/flext/tutorial/thread2/Makefile.am @@ -8,20 +8,20 @@ NAME = thread2 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).cw \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -37,7 +37,7 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -48,4 +48,4 @@ clean-local: rm -f ./$(OBJECTS) install-exec-local: - install ../$(TARGET) $(SYSDIR)extra \ No newline at end of file + install ../$(TARGET) $(SYSDIR)extra diff --git a/externals/grill/flext/tutorial/timer1/Makefile.am b/externals/grill/flext/tutorial/timer1/Makefile.am index b2ba30c1..25db9868 100644 --- a/externals/grill/flext/tutorial/timer1/Makefile.am +++ b/externals/grill/flext/tutorial/timer1/Makefile.am @@ -8,20 +8,20 @@ NAME = timer1 BUILT_SOURCES = main.cpp EXTRA_DIST = main.cpp \ - $(NAME).cw \ - $(NAME).dsp \ + $(NAME).mcp \ $(NAME).vcproj CXXFLAGS = @CXXFLAGS@ \ @OPT_FLAGS@ \ @INCLUDEDIR@ \ -I../../source \ - $(DEFS) + $(DEFS) \ + -DFLEXT_SHARED LDFLAGS = @LDFLAGS@ \ $(patsubst %,-framework %,$(FRAMEWORKS)) -LIBS = @LIBS@ +LIBS = @LIBS@ -lflext FRAMEWORKS = @FRAMEWORKS@ @@ -37,7 +37,7 @@ SYSDIR = @SYSDIR@ # ----------------------------- targets -------------------------------- all-local: $(OBJECTS) - $(CXX) $(LDFLAGS) -shared ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) + $(CXX) $(LDFLAGS) ./*.@OBJEXT@ $(LIBS) -o ../$(TARGETDIR)/$(TARGET) strip --strip-unneeded ../$(TARGETDIR)/$(TARGET) ./%.@OBJEXT@ : %.cpp @@ -48,4 +48,4 @@ clean-local: rm -f ./$(OBJECTS) install-exec-local: - install ../$(TARGET) $(SYSDIR)extra \ No newline at end of file + install ../$(TARGET) $(SYSDIR)extra -- cgit v1.2.1