Changeset ecfa20bd1a6282ffdbffe8ed2cea8f775d7a53f9
- Timestamp:
- 06/18/11 19:58:51
(2 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1308427131 -0400
- git-parent:
[df20caedcb6bf9c5addec71745192b3c1cf38f49]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1308427131 -0400
- Message:
this adds a handoff ingestor that makes it possible to do the ingestion from an external process that connects to stratcond for notifications of new journals
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r9204e48 |
recfa20b |
|
| 31 | 31 | |
|---|
| 32 | 32 | SMODULES=stomp_driver.@MODULEEXT@ postgres_ingestor.@MODULEEXT@ \ |
|---|
| 33 | | rabbitmq_driver.@MODULEEXT@ |
|---|
| | 33 | rabbitmq_driver.@MODULEEXT@ handoff_ingestor.@MODULEEXT@ |
|---|
| 34 | 34 | |
|---|
| 35 | 35 | all: $(MODULES) $(SMODULES) test_abort.@MODULEEXT@ |
|---|
| … | … | |
| 73 | 73 | |
|---|
| 74 | 74 | postgres_ingestor.lo: postgres_ingestor.c postgres_ingestor.xmlh |
|---|
| | 75 | @$(CC) $(CPPFLAGS) $(SHCFLAGS) $(PGCFLAGS) -c $< -o $@ |
|---|
| | 76 | @echo "- compiling $<" |
|---|
| | 77 | |
|---|
| | 78 | handoff_ingestor.lo: handoff_ingestor.c handoff_ingestor.xmlh |
|---|
| | 79 | |
|---|
| | 80 | handoff_ingestor.@MODULEEXT@: handoff_ingestor.lo |
|---|
| | 81 | @$(MODULELD) $(LDFLAGS) -o $@ handoff_ingestor.lo |
|---|
| | 82 | @echo "- linking $@" |
|---|
| | 83 | |
|---|
| | 84 | handoff_ingestor.lo: handoff_ingestor.c |
|---|
| 75 | 85 | @$(CC) $(CPPFLAGS) $(SHCFLAGS) $(PGCFLAGS) -c $< -o $@ |
|---|
| 76 | 86 | @echo "- compiling $<" |
|---|