[PD-cvs] externals Makefile,1.170,1.171

Hans-Christoph Steiner eighthave at users.sourceforge.net
Thu Dec 13 06:24:18 CET 2007


Update of /cvsroot/pure-data/externals
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3817

Modified Files:
	Makefile 
Log Message:
addeding jsarlo's windowing objects to the Pd-extended build system; added postlude to the GNU/Linux builds and usbhid to the Darwin builds.  Darwin doesn't have DSSI and Fedora doesn't have libhid-devel, otherwise I could add these two packages to those platforms

Index: Makefile
===================================================================
RCS file: /cvsroot/pure-data/externals/Makefile,v
retrieving revision 1.170
retrieving revision 1.171
diff -C2 -d -r1.170 -r1.171
*** Makefile	28 Nov 2007 04:45:20 -0000	1.170
--- Makefile	13 Dec 2007 05:24:16 -0000	1.171
***************
*** 125,129 ****
  # WARNING!  this MUST be all on one line because the automatic package
  # building scripts rely on it being that way.
! LIB_TARGETS = adaptive bassemu boids bsaylor creb cxc cyclone deprecated earplug ekext ext13 flashserver flatspace flib freeverb ggee hardware hcs iem_ambi iem_bin_ambi iemlib iemgui iem_adaptfilt iemmatrix iem_matrix iemxmlrpc iem_delay iem_roomsim iem_spec2 iem_tab jasch_lib loaders mapping markex maxlib mjlib moocow moonlib motex mrpeach msd oscx pan pdcontainer pddp pdogg pmpd sigpack smlib tkwidgets tof toxy unauthorized vbap zexy
  
  # this is for libraries that don't compile (yet) on all platforms
--- 125,129 ----
  # WARNING!  this MUST be all on one line because the automatic package
  # building scripts rely on it being that way.
! LIB_TARGETS = adaptive bassemu boids bsaylor creb cxc cyclone deprecated earplug ekext ext13 flashserver flatspace flib freeverb ggee hardware hcs iem_ambi iem_bin_ambi iemlib iemgui iem_adaptfilt iemmatrix iem_matrix iemxmlrpc iem_delay iem_roomsim iem_spec2 iem_tab jasch_lib loaders mapping markex maxlib mjlib moocow moonlib motex mrpeach msd oscx pan pdcontainer pddp pdogg pmpd sigpack smlib tkwidgets tof toxy unauthorized vbap windowing zexy
  
  # this is for libraries that don't compile (yet) on all platforms
***************
*** 132,139 ****
  else
    ifeq ($(OS_NAME),darwin)
!     LIB_TARGETS += hid hidio pdp pidip gem2pdp wiiremote iem16
    else
      # GNU/Linux, BSD, IRIX, etc.
!     LIB_TARGETS += hid hidio pdp pidip gem2pdp hdspm_mixer iem16
    endif
  endif
--- 132,139 ----
  else
    ifeq ($(OS_NAME),darwin)
!     LIB_TARGETS += hid hidio pdp pidip gem2pdp wiiremote iem16 usbhid
    else
      # GNU/Linux, BSD, IRIX, etc.
!     LIB_TARGETS += hid hidio pdp pidip gem2pdp hdspm_mixer iem16 postlude
    endif
  endif
***************
*** 2072,2075 ****
--- 2072,2076 ----
  # flib is separate, so exclude it here
  POSTLUDE_OBJECTS := $(wildcard $(externals_src)/postlude/[a-eg-z]*/src/*.c)
+ #	$(externals_src)/postlude/psql/psql.c
  postlude: $(POSTLUDE_OBJECTS:.c=.$(EXTENSION))
  
***************
*** 2440,2443 ****
--- 2441,2482 ----
  
  #------------------------------------------------------------------------------#
+ # WINDOWING
+ WINDOWING_NAME=windowing
+ WINDOWING_OBJECTS := $(wildcard $(externals_src)/windowing/*.c)
+ WINDOWING_SHARED := $(wildcard $(externals_src)/windowing/shared/*.c)
+ windowing_shared: $(WINDOWING_SHARED:.c=.o)
+ #	$(CC) $(DYLIB_LDFLAGS) \
+ #		-o $(externals_src)/windowing/libwindowing.$(DYLIB_EXTENSION) \
+ #		 $(WINDOWING_SHARED:.c=.o)
+ 
+ windowing: windowing_shared $(WINDOWING_OBJECTS:.c=.$(EXTENSION))
+ 
+ windowing_install: windowing
+ 	install -d $(objectsdir)/$(WINDOWING_NAME)
+ 	$(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(WINDOWING_NAME) \
+ 		--author "Joe Sarlo" \
+ 		--license "GPLv2 or later" 
+ 	install -p $(WINDOWING_OBJECTS:.c=.$(EXTENSION)) $(objectsdir)/$(WINDOWING_NAME)
+ 	install -d $(helpdir)/$(WINDOWING_NAME)
+ 	install -p $(externals_src)/windowing/*-help.pd \
+ 		$(helpdir)/$(WINDOWING_NAME)
+ #	install -d $(manualsdir)/$(WINDOWING_NAME)
+ #	install -p $(externals_src)/windowing/manual.txt \
+ #		$(manualsdir)/$(WINDOWING_NAME)
+ 	install -d $(readmesdir)
+ 	install -p $(externals_src)/windowing/README \
+ 		$(readmesdir)/$(WINDOWING_NAME).txt
+ 	install -d $(examplesdir)/$(WINDOWING_NAME)
+ 	install -p $(externals_src)/windowing/examples/*.pd \
+ 		$(examplesdir)/$(WINDOWING_NAME)
+ 
+ windowing_clean:
+ 	-rm -f -- $(WINDOWING_OBJECTS:.c=.$(EXTENSION))
+ 	-rm -f -- $(WINDOWING_OBJECTS:.c=.o)
+ 	-rm -f -- $(externals_src)/windowing/*.bak
+ 	-rm -f -- $(externals_src)/windowing/*.*~
+ 
+ 
+ #------------------------------------------------------------------------------#
  # Zexy
  ZEXY_NAME = zexy





More information about the Pd-cvs mailing list