commit aa7cd3361db7f347bc117ca5d2ec07a9e5ad3e99 parent 183f0c5a0e99fb5e66d4b5f0020e8f2130c3c54f Author: Nihal Jere <nihal@nihaljere.xyz> Date: Thu, 18 Nov 2021 21:09:57 -0600 add Makefile Diffstat:
A | Makefile | | | 5 | +++++ |
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile @@ -0,0 +1,5 @@ +.c.o: + $(CC) -c $< -o $@ + +nooc: main.o array.o x64.o + $(CC) main.o array.o x64.o -o nooc