diff options
author | Jakob Kaivo <jkk@ung.org> | 2022-04-17 14:26:10 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2022-04-17 14:26:10 -0400 |
commit | 028f700584306cd465ddb18231ecc41c17418082 (patch) | |
tree | 60208e5409cdafe1af9b720d7ab7322b21b7253a /Makefile |
initial commit recognizing tokens
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5fda526 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +expr: expr.c + $(CC) -g -o $@ expr.c -ll + +expr.c: expr.l + lex -t expr.l > expr.c + + |