diff options
author | Johnny Richard <johnny@johnnyrichard.com> | 2023-04-13 00:31:15 +0200 |
---|---|---|
committer | Johnny Richard <johnny@johnnyrichard.com> | 2023-04-13 00:44:13 +0200 |
commit | ac701605347e913b19ef8bd7f11039162e504f35 (patch) | |
tree | e0138f6e6310826d876a4f43f83caed6b0b89fda /Makefile |
Create inital project structure + lexer
Signed-off-by: Johnny Richard <johnny@johnnyrichard.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..280c0e0 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +all: pipac + +pipac: pipac.c + $(CC) pipac.c -o pipac |