diff options
author | crupest <crupest@outlook.com> | 2021-11-22 20:53:01 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-11-22 20:53:01 +0800 |
commit | 744f15a11ce9eec4e8b5b7cae1b614835210fa01 (patch) | |
tree | 249f66cd83115ccef23a4f3fee02e340b994ac9f /compile-principle-experiment/1/makefile | |
parent | f1c97716c363f1095520b8ddd9c83cab6e339f54 (diff) | |
download | life-744f15a11ce9eec4e8b5b7cae1b614835210fa01.tar.gz life-744f15a11ce9eec4e8b5b7cae1b614835210fa01.tar.bz2 life-744f15a11ce9eec4e8b5b7cae1b614835210fa01.zip |
Add compile principle codes.
Diffstat (limited to 'compile-principle-experiment/1/makefile')
-rw-r--r-- | compile-principle-experiment/1/makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compile-principle-experiment/1/makefile b/compile-principle-experiment/1/makefile new file mode 100644 index 0000000..65bcca2 --- /dev/null +++ b/compile-principle-experiment/1/makefile @@ -0,0 +1,5 @@ +hoc: hoc.c + cc hoc.c -o hoc + +hoc.c: hoc.y + bison hoc.y -o hoc.c |