[PD-cvs] externals/grill/flext/buildsys/win nmake-msvc-ext.inc,1.2,1.3 nmake-msvc-flext.inc,1.2,1.3

Thomas Grill xovo at users.sourceforge.net
Sat Jan 8 05:58:32 CET 2005


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

Modified Files:
	nmake-msvc-ext.inc nmake-msvc-flext.inc 
Log Message:
minor updates
adapted the queue stuff to work with the new set_callback functionality
reconsidered flext::buffer:Update
added object construction and destruction flags
updated autoconf system
small updates
better templates, some minor changes
update for linux
cleanups


Index: nmake-msvc-ext.inc
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/win/nmake-msvc-ext.inc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** nmake-msvc-ext.inc	5 Jan 2005 05:04:11 -0000	1.2
--- nmake-msvc-ext.inc	8 Jan 2005 04:58:30 -0000	1.3
***************
*** 38,44 ****
  ##############################################
  
! $(INSTPATH):
! 	if not exist $@ mkdir $@ > nul
  
- _install_: $(INSTPATH)
  	copy $(TARGET) $(INSTPATH) > nul
--- 38,43 ----
  ##############################################
  
! _install_:
! 	@if not exist $(INSTPATH) mkdir $(INSTPATH) > nul
  
  	copy $(TARGET) $(INSTPATH) > nul

Index: nmake-msvc-flext.inc
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/win/nmake-msvc-flext.inc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** nmake-msvc-flext.inc	5 Jan 2005 05:04:11 -0000	1.2
--- nmake-msvc-flext.inc	8 Jan 2005 04:58:30 -0000	1.3
***************
*** 45,60 ****
  !endif
  
! $(FLEXTINC):
! 	if not exist $@ mkdir $@ > nul
! 
! $(FLEXTLIB):
! 	if not exist $@ mkdir $@ > nul
! 
! $(FLEXTLIBINST):
! 	if not exist $@ mkdir $@ > nul
! 
! _install_:: $(FLEXTINC) $(FLEXTLIB) $(FLEXTLIBINST)
  
- _install_::
  	copy $(TARGET) $(FLEXTLIBINST) > nul
  !ifdef SHARED
--- 45,54 ----
  !endif
  
! _install_:
! # create folders
! 	@if not exist $(FLEXTINC) mkdir $(FLEXTINC) > nul
! 	@if not exist $(FLEXTLIB) mkdir $(FLEXTLIB) > nul
! 	@if not exist $(FLEXTLIBINST) mkdir $(FLEXTLIBINST) > nul
  
  	copy $(TARGET) $(FLEXTLIBINST) > nul
  !ifdef SHARED
***************
*** 63,65 ****
  !endif
  # copy headers
! 	for %%i in ($(HDRS)) do @copy $(SRCDIR)\%%i $(FLEXTINC) > nul	
--- 57,59 ----
  !endif
  # copy headers
! 	for %%i in ($(HDRS)) do @copy $(SRCDIR)\%%i $(FLEXTINC) > nul





More information about the Pd-cvs mailing list