[PD-cvs] externals/grill/pool make-files.txt,NONE,1.1 config-pd-bcc.txt,1.3,1.4 config-pd-darwin.txt,1.3,1.4 config-pd-linux.txt,1.4,1.5 config-pd-msvc.txt,1.4,1.5 makefile.pd-bcc,1.2,1.3 makefile.pd-darwin,1.3,1.4 makefile.pd-linux,1.4,1.5 makefile.pd-msvc,1.2,1.3 pool.vcproj,1.4,1.5 data.cpp,1.12,NONE main.cpp,1.12,NONE pool.cpp,1.16,NONE pool.h,1.9,NONE

xovo at users.sourceforge.net xovo at users.sourceforge.net
Thu Jan 8 04:38:38 CET 2004


Update of /cvsroot/pure-data/externals/grill/pool
In directory sc8-pr-cvs1:/tmp/cvs-serv31723

Modified Files:
	config-pd-bcc.txt config-pd-darwin.txt config-pd-linux.txt 
	config-pd-msvc.txt makefile.pd-bcc makefile.pd-darwin 
	makefile.pd-linux makefile.pd-msvc pool.vcproj 
Added Files:
	make-files.txt 
Removed Files:
	data.cpp main.cpp pool.cpp pool.h 
Log Message:
 ""

--- NEW FILE: make-files.txt ---
# all the source files from the package
NAME=pool

SRCDIR=source

SRCS= main.cpp data.cpp pool.cpp
HDRS= pool.h

Index: config-pd-bcc.txt
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/pool/config-pd-bcc.txt,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** config-pd-bcc.txt	31 Mar 2003 02:37:25 -0000	1.3
--- config-pd-bcc.txt	8 Jan 2004 03:38:35 -0000	1.4
***************
*** 1,4 ****
  # pool - hierarchical storage object for PD and Max/MSP
! # Copyright (c) 2002-2003 Thomas Grill (xovo at gmx.net)
  #
  
--- 1,4 ----
  # pool - hierarchical storage object for PD and Max/MSP
! # Copyright (c) 2002-2004 Thomas Grill (xovo at gmx.net)
  #
  
***************
*** 19,20 ****
--- 19,23 ----
  INSTPATH=$(PDPATH)\extra
  
+ 
+ # additional compiler flags
+ UFLAGS=-6 -O2 -OS -ff 

Index: config-pd-darwin.txt
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/pool/config-pd-darwin.txt,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** config-pd-darwin.txt	12 Mar 2003 04:37:04 -0000	1.3
--- config-pd-darwin.txt	8 Jan 2004 03:38:35 -0000	1.4
***************
*** 1,4 ****
  # pool - hierarchical storage object for PD and Max/MSP
! # Copyright (c) 2002-2003 Thomas Grill (xovo at gmx.net)
  #
  
--- 1,4 ----
  # pool - hierarchical storage object for PD and Max/MSP
! # Copyright (c) 2002-2004 Thomas Grill (xovo at gmx.net)
  #
  
***************
*** 9,19 ****
  # leave it blank if it is a system directory (like /usr/local/include), 
  # 	since gcc 3.2 complains about it
! PDPATH=/usr/local/pd/src
  
  # where is the PD executable?
! PD=/usr/local/pd/bin/pd
  
  # where do the flext libraries reside?
! FLEXTPATH=/usr/local/pd/flext
  
  # where should flext libraries be built? 
--- 9,19 ----
  # leave it blank if it is a system directory (like /usr/local/include), 
  # 	since gcc 3.2 complains about it
! PDPATH=/usr/local/lib/pd/src
  
  # where is the PD executable?
! PD=/usr/local/bin/pd
  
  # where do the flext libraries reside?
! FLEXTPATH=/usr/local/lib/pd/flext
  
  # where should flext libraries be built? 
***************
*** 22,26 ****
  # where should pool be installed?
  # (leave blank to omit installation)
! INSTPATH=/usr/local/pd/extra
  
  # additional compiler flags
--- 22,26 ----
  # where should pool be installed?
  # (leave blank to omit installation)
! INSTPATH=/usr/local/lib/pd/extra
  
  # additional compiler flags

Index: config-pd-linux.txt
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/pool/config-pd-linux.txt,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** config-pd-linux.txt	24 Sep 2003 02:40:50 -0000	1.4
--- config-pd-linux.txt	8 Jan 2004 03:38:35 -0000	1.5
***************
*** 1,4 ****
  # pool - hierarchical storage object for PD and Max/MSP
! # Copyright (c) 2002-2003 Thomas Grill (xovo at gmx.net)
  #
  
--- 1,4 ----
  # pool - hierarchical storage object for PD and Max/MSP
! # Copyright (c) 2002-2004 Thomas Grill (xovo at gmx.net)
  #
  

Index: config-pd-msvc.txt
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/pool/config-pd-msvc.txt,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** config-pd-msvc.txt	10 Nov 2003 03:38:14 -0000	1.4
--- config-pd-msvc.txt	8 Jan 2004 03:38:35 -0000	1.5
***************
*** 1,4 ****
  # pool - hierarchical storage object for PD and Max/MSP
! # Copyright (c) 2002-2003 Thomas Grill (xovo at gmx.net)
  #
  
--- 1,4 ----
  # pool - hierarchical storage object for PD and Max/MSP
! # Copyright (c) 2002-2004 Thomas Grill (xovo at gmx.net)
  #
  
***************
*** 19,20 ****
--- 19,24 ----
  # (leave blank to omit installation)
  INSTPATH=$(PDPATH)\extra
+ 
+ 
+ # additional compiler flags
+ UFLAGS=/G6 /Ox 
\ No newline at end of file

Index: makefile.pd-bcc
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/pool/makefile.pd-bcc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** makefile.pd-bcc	10 Dec 2003 03:37:59 -0000	1.2
--- makefile.pd-bcc	8 Jan 2004 03:38:35 -0000	1.3
***************
*** 1,4 ****
  # pool - hierarchical storage object for PD and Max/MSP
! # Copyright (C) 2002 Thomas Grill
  #
  # Makefile for BorlandC++ 
--- 1,4 ----
  # pool - hierarchical storage object for PD and Max/MSP
! # Copyright (C) 2002-2004 Thomas Grill
  #
  # Makefile for BorlandC++ 
***************
*** 10,14 ****
  !include config-pd-bcc.txt
  
! NAME=pool
  SETUPFUNCTION=$(NAME)_setup
  
--- 10,16 ----
  !include config-pd-bcc.txt
  
! # all the source files from the package
! !include make-files.txt
! 
  SETUPFUNCTION=$(NAME)_setup
  
***************
*** 23,27 ****
  # compiler definitions and flags
  DEFS=-DFLEXT_SYS=2 
! CFLAGS=-6 -O2 -OS -ff -tWD 
  
  
--- 25,29 ----
  # compiler definitions and flags
  DEFS=-DFLEXT_SYS=2 
! CFLAGS=-tWD $(UFLAGS)
  
  
***************
*** 29,36 ****
  # ----------------------------------------------
  
- # all the source files from the package
- SRCS= main.cpp data.cpp pool.cpp
- HDRS= pool.h 
- 
  # default target
  all: $(OUTPATH)\$(NAME).dll
--- 31,34 ----
***************
*** 54,58 ****
  #	-touch $<
  
! .cpp.obj:
  	bcc32 -c $(CFLAGS) $(DEFS) $(INCPATH) -n$(OUTPATH) $<
  
--- 52,56 ----
  #	-touch $<
  
! {$(SRCDIR)}.cpp.obj:
  	bcc32 -c $(CFLAGS) $(DEFS) $(INCPATH) -n$(OUTPATH) $<
  

Index: makefile.pd-darwin
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/pool/makefile.pd-darwin,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** makefile.pd-darwin	9 Apr 2003 02:37:26 -0000	1.3
--- makefile.pd-darwin	8 Jan 2004 03:38:35 -0000	1.4
***************
*** 1,4 ****
  # pool - hierarchical storage object for PD and Max/MSP
! # Copyright (C) 2002 Thomas Grill (xovo at gmx.net)
  #
  # Makefile for gcc @ darwin (OSX)
--- 1,4 ----
  # pool - hierarchical storage object for PD and Max/MSP
! # Copyright (C) 2002-2004 Thomas Grill (xovo at gmx.net)
  #
  # Makefile for gcc @ darwin (OSX)
***************
*** 29,39 ****
  # ----------------------------------------------
  
! NAME=pool
! 
! # all the source files from the package
! SRCS=main.cpp pool.cpp data.cpp
! HDRS=pool.h
  
- DIR=.
  
  TARGET=$(TARGDIR)/$(NAME).pd_darwin
--- 29,34 ----
  # ----------------------------------------------
  
! include make-files.txt
  
  
  TARGET=$(TARGDIR)/$(NAME).pd_darwin
***************
*** 42,46 ****
  all: $(TARGDIR) $(TARGET)
  
! $(patsubst %,$(DIR)/%,$(SRCS)): $(patsubst %,$(DIR)/%,$(HDRS)) $(FLEXTLIB) $(CONFIG)
  	touch $@
  
--- 37,41 ----
  all: $(TARGDIR) $(TARGET)
  
! $(patsubst %,$(SRCDIR)/%,$(SRCS)): $(patsubst %,$(SRCDIR)/%,$(HDRS)) $(FLEXTLIB) $(CONFIG)
  	touch $@
  
***************
*** 48,52 ****
  	-mkdir $(TARGDIR)
  
! $(TARGDIR)/%.o : $(DIR)/%.cpp
  	$(CXX) -c $(CFLAGS) $(FLAGS) $(patsubst %,-I%,$(INCLUDES) $(FLEXTPATH)) $< -o $@
  
--- 43,47 ----
  	-mkdir $(TARGDIR)
  
! $(TARGDIR)/%.o : $(SRCDIR)/%.cpp
  	$(CXX) -c $(CFLAGS) $(FLAGS) $(patsubst %,-I%,$(INCLUDES) $(FLEXTPATH)) $< -o $@
  
***************
*** 69,76 ****
  	rm -f $(TARGDIR)/*.o $(TARGET)
  	
- 
- 
- 
- 
  
  
--- 64,67 ----

Index: makefile.pd-linux
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/pool/makefile.pd-linux,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** makefile.pd-linux	28 Dec 2003 03:50:53 -0000	1.4
--- makefile.pd-linux	8 Jan 2004 03:38:35 -0000	1.5
***************
*** 1,4 ****
  # pool - hierarchical storage object for PD and Max/MSP
! # Copyright (C) 2002 Thomas Grill (xovo at gmx.net)
  #
  # Makefile for gcc @ linux
--- 1,4 ----
  # pool - hierarchical storage object for PD and Max/MSP
! # Copyright (C) 2002-2004 Thomas Grill (xovo at gmx.net)
  #
  # Makefile for gcc @ linux
***************
*** 43,53 ****
  # ----------------------------------------------
  
! NAME=pool
! 
! # all the source files from the package
! SRCS=main.cpp pool.cpp data.cpp
! HDRS=pool.h
  
- DIR=.
  
  TARGET=$(TARGDIR)/$(NAME).pd_linux
--- 43,48 ----
  # ----------------------------------------------
  
! include make-files.txt
  
  
  TARGET=$(TARGDIR)/$(NAME).pd_linux
***************
*** 56,60 ****
  all: $(TARGDIR) $(TARGET)
  
! $(patsubst %,$(DIR)/%,$(SRCS)): $(patsubst %,$(DIR)/%,$(HDRS)) $(CONFIG)
  	touch $@
  
--- 51,55 ----
  all: $(TARGDIR) $(TARGET)
  
! $(patsubst %,$(SRCDIR)/%,$(SRCS)): $(patsubst %,$(SRCDIR)/%,$(HDRS)) $(CONFIG)
  	touch $@
  
***************
*** 62,66 ****
  	mkdir $(TARGDIR)
  
! $(TARGDIR)/%.o : $(DIR)/%.cpp
  	$(CXX) -c $(CFLAGS) $(FLAGS) $(patsubst %,-I%,$(INCLUDES) $(FLEXTPATH)) $< -o $@
  
--- 57,61 ----
  	mkdir $(TARGDIR)
  
! $(TARGDIR)/%.o : $(SRCDIR)/%.cpp
  	$(CXX) -c $(CFLAGS) $(FLAGS) $(patsubst %,-I%,$(INCLUDES) $(FLEXTPATH)) $< -o $@
  

Index: makefile.pd-msvc
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/pool/makefile.pd-msvc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** makefile.pd-msvc	10 Dec 2003 03:37:59 -0000	1.2
--- makefile.pd-msvc	8 Jan 2004 03:38:35 -0000	1.3
***************
*** 1,4 ****
  # pool - hierarchical storage object for PD and Max/MSP
! # Copyright (C) 2002 Thomas Grill (xovo at gmx.net)
  #
  # Makefile for MSVC++ 6 and 7
--- 1,4 ----
  # pool - hierarchical storage object for PD and Max/MSP
! # Copyright (C) 2002-2004 Thomas Grill (xovo at gmx.net)
  #
  # Makefile for MSVC++ 6 and 7
***************
*** 18,34 ****
  DEFS=/DFLEXT_SYS=2
  
! CFLAGS=/G6 /Ox /ML /EHsc
! 
! # the rest can stay untouched
! # ----------------------------------------------
  
- # all the source files from the package
- SRCS= main.cpp data.cpp pool.cpp
- HDRS= pool.h
  
! # -----------------------------------------------
  
! NAME=pool
! DIR=.
  
  all: $(OUTPATH) $(OUTPATH)\$(NAME).dll
--- 18,28 ----
  DEFS=/DFLEXT_SYS=2
  
! CFLAGS=/ML /EHsc $(UFLAGS)
  
  
! # the rest can stay untouched
! ####################################
  
! !include make-files.txt
  
  all: $(OUTPATH) $(OUTPATH)\$(NAME).dll
***************
*** 44,48 ****
  	-mkdir $(OUTPATH) > nul
  
! {$(DIR)}.cpp{}.obj:
  	cl /c /LD $(CFLAGS) $(DEFS) $(INCPATH) $** /Fo$(OUTPATH)\$@
  
--- 38,42 ----
  	-mkdir $(OUTPATH) > nul
  
! {$(SRCDIR)}.cpp{}.obj:
  	cl /c /LD $(CFLAGS) $(DEFS) $(INCPATH) $** /Fo$(OUTPATH)\$@
  

Index: pool.vcproj
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/pool/pool.vcproj,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** pool.vcproj	17 Dec 2003 03:37:55 -0000	1.4
--- pool.vcproj	8 Jan 2004 03:38:35 -0000	1.5
***************
*** 285,400 ****
  	<Files>
  		<File
! 			RelativePath="data.cpp">
! 			<FileConfiguration
! 				Name="PD Release|Win32">
! 				<Tool
! 					Name="VCCLCompilerTool"
! 					Optimization="2"
! 					AdditionalIncludeDirectories=""
! 					PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;FLEXT_SYS=2;$(NoInherit)"/>
! 			</FileConfiguration>
! 			<FileConfiguration
! 				Name="PD Debug|Win32">
! 				<Tool
! 					Name="VCCLCompilerTool"
! 					Optimization="0"
! 					AdditionalIncludeDirectories=""
! 					PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;FLEXT_SYS=2;$(NoInherit)"
! 					BasicRuntimeChecks="3"
! 					BrowseInformation="1"/>
! 			</FileConfiguration>
! 			<FileConfiguration
! 				Name="Max Release|Win32">
! 				<Tool
! 					Name="VCCLCompilerTool"
! 					Optimization="2"
! 					AdditionalIncludeDirectories=""
! 					PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;FLEXT_SYS=1"/>
! 			</FileConfiguration>
! 			<FileConfiguration
! 				Name="Max Debug|Win32">
! 				<Tool
! 					Name="VCCLCompilerTool"
! 					Optimization="2"
! 					AdditionalIncludeDirectories=""
! 					PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;FLEXT_SYS=1"/>
! 			</FileConfiguration>
  		</File>
  		<File
! 			RelativePath="main.cpp">
! 			<FileConfiguration
! 				Name="PD Release|Win32">
! 				<Tool
! 					Name="VCCLCompilerTool"
! 					Optimization="2"
! 					AdditionalIncludeDirectories=""
! 					PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;FLEXT_SYS=2;$(NoInherit)"/>
! 			</FileConfiguration>
! 			<FileConfiguration
! 				Name="PD Debug|Win32">
! 				<Tool
! 					Name="VCCLCompilerTool"
! 					Optimization="0"
! 					AdditionalIncludeDirectories=""
! 					PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;FLEXT_SYS=2;$(NoInherit)"
! 					BasicRuntimeChecks="3"
! 					BrowseInformation="1"/>
! 			</FileConfiguration>
! 			<FileConfiguration
! 				Name="Max Release|Win32">
! 				<Tool
! 					Name="VCCLCompilerTool"
! 					Optimization="2"
! 					AdditionalIncludeDirectories=""
! 					PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;FLEXT_SYS=1"/>
! 			</FileConfiguration>
! 			<FileConfiguration
! 				Name="Max Debug|Win32">
! 				<Tool
! 					Name="VCCLCompilerTool"
! 					Optimization="2"
! 					AdditionalIncludeDirectories=""
! 					PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;FLEXT_SYS=1"/>
! 			</FileConfiguration>
  		</File>
  		<File
! 			RelativePath="pool.cpp">
! 			<FileConfiguration
! 				Name="PD Release|Win32">
! 				<Tool
! 					Name="VCCLCompilerTool"
! 					Optimization="2"
! 					AdditionalIncludeDirectories=""
! 					PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;FLEXT_SYS=2;$(NoInherit)"/>
! 			</FileConfiguration>
! 			<FileConfiguration
! 				Name="PD Debug|Win32">
! 				<Tool
! 					Name="VCCLCompilerTool"
! 					Optimization="0"
! 					AdditionalIncludeDirectories=""
! 					PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_MBCS;_USRDLL;FLEXT_SYS=2;$(NoInherit)"
! 					BasicRuntimeChecks="3"
! 					BrowseInformation="1"/>
! 			</FileConfiguration>
! 			<FileConfiguration
! 				Name="Max Release|Win32">
! 				<Tool
! 					Name="VCCLCompilerTool"
! 					Optimization="2"
! 					AdditionalIncludeDirectories=""
! 					PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;FLEXT_SYS=1"/>
! 			</FileConfiguration>
! 			<FileConfiguration
! 				Name="Max Debug|Win32">
! 				<Tool
! 					Name="VCCLCompilerTool"
! 					Optimization="2"
! 					AdditionalIncludeDirectories=""
! 					PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_MBCS;_USRDLL;FLEXT_SYS=1"/>
! 			</FileConfiguration>
  		</File>
  		<File
! 			RelativePath="pool.h">
  		</File>
  		<File
--- 285,298 ----
  	<Files>
  		<File
! 			RelativePath=".\source\data.cpp">
  		</File>
  		<File
! 			RelativePath=".\source\main.cpp">
  		</File>
  		<File
! 			RelativePath=".\source\pool.cpp">
  		</File>
  		<File
! 			RelativePath=".\source\pool.h">
  		</File>
  		<File

--- data.cpp DELETED ---

--- main.cpp DELETED ---

--- pool.cpp DELETED ---

--- pool.h DELETED ---






More information about the Pd-cvs mailing list