summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-07-24 09:51:20 +0200
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-07-24 09:51:20 +0200
commitc734cd67ee4ebe5c235c7785f6b193952bf3bc17 (patch)
treee190587e1b7e52157f5381a311f732071fb488bd /ast-to-instr
parent2b3f20d89c7d500842869d3316bee9c7457ba6d4 (diff)
Fixes connect_to/node_connect, configs Makefiles.
Diffstat (limited to 'ast-to-instr')
-rw-r--r--ast-to-instr/Makefile5
-rw-r--r--ast-to-instr/src/VHDLSSCNode.java2
2 files changed, 4 insertions, 3 deletions
diff --git a/ast-to-instr/Makefile b/ast-to-instr/Makefile
index 59bc9bb..f09cae1 100644
--- a/ast-to-instr/Makefile
+++ b/ast-to-instr/Makefile
@@ -18,12 +18,13 @@ CLASSES = $(SOURCES:.java=.class)
## Makefile Rules ##############################################################
-all: $(CLASSES)
+all: structural.mod
clean:
rm -f $(CLASSES)
+ rm -f *.mod
-run: $(CLASSES) $(REQUIRED_JARS)
+structural.mod: $(CLASSES) $(REQUIRED_JARS) $(INPUT_FILE)
$(JAVA) -cp $(CLASSPATH) Main $(INPUT_FILE)
%.class: %.java $(REQUIRED_JARS)
diff --git a/ast-to-instr/src/VHDLSSCNode.java b/ast-to-instr/src/VHDLSSCNode.java
index 34c4f7d..641377f 100644
--- a/ast-to-instr/src/VHDLSSCNode.java
+++ b/ast-to-instr/src/VHDLSSCNode.java
@@ -197,7 +197,7 @@ public class VHDLSSCNode extends VHDLNode
Predicates.add_entry
(
output,
- "connect_to",
+ "node_connect",
prev_node,
first_node_id
);