summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2017-12-28 14:10:45 +1300
committerDavid Phillips <david@sighup.nz>2017-12-28 14:10:45 +1300
commitf5411bc35f6df1c27aae8d3405e18452cbbc957f (patch)
treeb0d19293fcbba19eebe56fcf6bdcd21397c0c9f6
parente3ee67bfda0e8f4aa91992a196adb283f812475e (diff)
downloadhence-f5411bc35f6df1c27aae8d3405e18452cbbc957f.tar.xz
Fix build issue, add clean recipe
-rw-r--r--Makefile5
-rw-r--r--parser.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 68ca80d..b40650e 100644
--- a/Makefile
+++ b/Makefile
@@ -5,3 +5,8 @@ all: simulator
simulator: simulator.o gate.o logic.o
parser: parser.o gate.o logic.o
+
+
+clean:
+ rm -f parser simulator
+ rm -f *.o
diff --git a/parser.c b/parser.c
index 2f08f46..f3fe38d 100644
--- a/parser.c
+++ b/parser.c
@@ -5,7 +5,7 @@
#include "common.h"
#include "error.h"
#include "logic.h"
-#include "wire.h"
+#include "gate.h"
enum STATEMENT_TYPE {
DECL_EXPR,