summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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
);