diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2022-08-10 18:12:44 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2022-08-10 18:50:08 -0400 |
commit | c441f8f092cd5da5b09e3e4e826141d915189ab5 (patch) | |
tree | 93400e2620238f29cbd527eec8684ea117a6be6f /Makefile |
Step 1: Integers
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..513a132 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +test: + gcc -c scheme_entry.S + gcc -c test.c + gcc -o test scheme_entry.o test.o + ./test + +.PHONY: test |