Changeset 516 for ocaml-remix

Show
Ignore:
Timestamp:
11/09/07 06:42:31 (1 year ago)
Author:
shans
Message:

Float Buffer implementation

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • ocaml-remix/trunk/Makefile

    r514 r516  
    66                        continuous_sound_test 
    77INCLUDES=-I +extlib 
    8 OBJECTS=extLib unix oss ladspa_raw 
     8OBJECTS=extLib unix oss ladspa_raw FB 
    99 
    1010INTERFACES = $(patsubst %, %.mli, $(COMPONENTS)) 
     
    2828        ocamlc -a -g -o remix.cma $(SOURCES) oss.cma ladspa_raw.cma 
    2929 
    30 remix.cmxa: $(INTERFACES) $(SOURCES) oss.cmxa ladspa_raw.cmxa 
     30remix.cmxa: $(INTERFACES) $(SOURCES) oss.cmxa ladspa_raw.cmxa FB.cmxa 
    3131        ocamlopt -c $(OCAMLOPTARGS) $(INTERFACES) $(SOURCES) 
    3232        ocamlopt -a -o remix.cmxa $(SOURCES) 
     
    4646                                                        -o ladspa_raw.cmxa 
    4747 
     48FB.cmxa: FB.mli FB.ml FB_impl.c 
     49        ocamlopt FB_impl.c FB.mli FB.ml -a -o FB.cmxa 
     50 
    4851%.bin: remix.cma %.ml 
    4952        ocamlc $(OCAMLCARGS) $^ -o $@