|
Revision 439a07b2ce22e31acad01b90a47385ccfa802595, 277 bytes
(checked in by Dave Longley <dlongley@…>, 16 months ago)
|
|
Added alternate API for more control over IO.
- New API allows the application to control when input is passed
to the rdfa parser. This is sometimes a friendlier API for
input streams.
- Old API should still work just fine.
- speed2 test added that processes the same triples as speed test
but uses the new API.
- Some trailing whitespace trimmed.
|
-
Property mode set to
100644
|
| Line | |
|---|
| 1 | # Makefile to compile the binaries in this directory |
|---|
| 2 | |
|---|
| 3 | EXECUTABLES = rdfa2n3 rdfastring2n3 curies speed speed2 |
|---|
| 4 | |
|---|
| 5 | DYNAMIC_LINK_LIBRARIES = rdfa |
|---|
| 6 | DYNAMIC_UNIX_LIBRARIES = expat |
|---|
| 7 | DYNAMIC_WINDOWS_LIBRARIES = expat |
|---|
| 8 | |
|---|
| 9 | # ----------- Standard Makefile |
|---|
| 10 | include @RDFADIR@/setup/Makefile.base |
|---|