[PD-cvs] externals/grill/flext/buildsys/win/pd config-bcc.def,NONE,1.1 config-cygwin.def,NONE,1.1 config-mingw.def,NONE,1.1 config-msvc.def,NONE,1.1 make-bcc.inc,NONE,1.1 make-cygwin.inc,NONE,1.1 make-mingw.inc,NONE,1.1 make-msvc.inc,NONE,1.1

Thomas Grill xovo at users.sourceforge.net
Mon Dec 20 06:06:21 CET 2004


Update of /cvsroot/pure-data/externals/grill/flext/buildsys/win/pd
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16508/buildsys/win/pd

Added Files:
	config-bcc.def config-cygwin.def config-mingw.def 
	config-msvc.def make-bcc.inc make-cygwin.inc make-mingw.inc 
	make-msvc.inc 
Log Message:
simplified make system
updated make system for BCC
updated make system
updated build system


--- NEW FILE: make-bcc.inc ---
DEFS=$(DEFS) /DFLEXT_SYS=2

INCPATH=$(INCPATH) -I$(PDPATH)\src

# these are both in FLEXTPATH
LIBS=$(LIBS) pd.lib pthreadVC.lib

EXT=dll

--- NEW FILE: make-msvc.inc ---
DEFS=$(DEFS) /DFLEXT_SYS=2

INCPATH=$(INCPATH) /I$(PDPATH)\src
LIBPATH=$(LIBPATH) /LIBPATH:$(PDPATH)\bin

# these are both in PDPATH
LIBS=$(LIBS) pd.lib pthreadVC.lib

EXT=dll

--- NEW FILE: config-cygwin.def ---
# where is PD?
PDPATH=/cygdrive/c/programme/audio/pd

# where should the external be installed?
INSTPATH=$(PDPATH)/extra

# where do the flext headers and libraries reside?
FLEXTPATH=$(PDPATH)/flext

# where should the external be built?
OUTPATH=pd-cygwin

# user defined compiler flags
# (check if they match your system!)
OFLAGS=-O2 -march=pentium4 -msse

--- NEW FILE: config-bcc.def ---
# where is PD?
PDPATH=c:\programme\audio\pd		

# where should the external be installed?
INSTPATH=$(PDPATH)\extra

# where do the flext headers and libraries reside?
FLEXTPATH=$(PDPATH)\flext

# where is BorlandC++?
BCCPATH=C:\Programme\prog\bcc55

# where should the external be built?
OUTPATH=pd-bcc

# user defined compiler flags
# (check if they match your system!)
OFLAGS=-6 -O2 -OS -ff -d


--- NEW FILE: config-msvc.def ---
# where is PD?
PDPATH=c:\programme\audio\pd		

# where should the external be installed?
INSTPATH=$(PDPATH)\extra

# where do the flext headers and libraries reside?
FLEXTPATH=$(PDPATH)\flext

# where is MS VC++?
# (not necessary if the build is run with the compiler environment)
# MSVCPATH=C:\Programme\Microsoft Visual Studio .NET 2003\Vc7

# where should the external be built?
OUTPATH=pd-msvc

# user defined compiler flags
# (check if they match your system!)
OFLAGS=/G6 /Ox /arch:SSE

--- NEW FILE: config-mingw.def ---
# where is PD?
PDPATH=c:/programme/audio/pd

# where should the external be installed?
INSTPATH=$(PDPATH)/extra

# where do the flext headers and libraries reside?
FLEXTPATH=$(PDPATH)/flext

# where should the external be built?
OUTPATH=pd-mingw

# user defined compiler flags
# (check if they match your system!)
OFLAGS=-O2 -march=pentium4 -msse

--- NEW FILE: make-cygwin.inc ---
DEFS += -DFLEXT_SYS=2

INCPATH += -I$(PDPATH)/src

# trick PD in a way that only the cygwin pthread headers are used
CFLAGS += -include /usr/include/pthread.h -DPTHREAD_H

LIBS += $(PDPATH)/bin/pd.dll 
#LIBS += $(PDPATH)/bin/pthreadVC.dll

EXT=dll

--- NEW FILE: make-mingw.inc ---
DEFS += -DFLEXT_SYS=2

INCPATH += -I$(PDPATH)/src
LIBPATH += -L$(PDPATH)/bin

# these are both in PDPATH
LIBS += -lpd -lpthreadVC

EXT=dll





More information about the Pd-cvs mailing list