annotate rdf/generator/Makefile.linux @ 144:a4aad47aaf96

* Restructure output so that each file describes a plugin library rather than a single plugin (or at least, so that the base uri is for a library -- the file can still contain one or more plugins so long as they all come from the same library). * Make it possible to give the library name instead of individual plugin names on the command line to generate templates for entire library * Make program accept more than one plugin name, too
author cannam
date Fri, 20 Jun 2008 13:44:34 +0000
parents 147de5e64d28
children
rev   line source
cannam@138 1
cannam@138 2 CXXFLAGS := -I../.. -O2 -Wall
cannam@138 3
cannam@138 4 template-generator: template-generator.o
cannam@138 5 g++ $^ -o $@ -L../../vamp-sdk -Wl,-Bstatic -lvamp-hostsdk -Wl,-Bdynamic -ldl
cannam@138 6
cannam@138 7 clean:
cannam@138 8 rm *.o
cannam@138 9