diff options
author | Josh <eeei3.joshua0307lol@gmail.com> | 2025-01-18 00:02:36 -0500 |
---|---|---|
committer | Josh <eeei3.joshua0307lol@gmail.com> | 2025-01-18 00:02:36 -0500 |
commit | e448957c4cc518234d8f6a92219fe649568131d6 (patch) | |
tree | f223eb5abb034ed8770dee2171c23ad62d792f3e /Makefile | |
parent | c60e25414b43433ea7275829e0df937cfcff3ebb (diff) |
feat: turns out nanosleep and usleep are not part of C99 thus I cannot use them, so I will probably be using time() and getting the diff. created Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..04d0f04 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +PROG=main.c + +all: $(PROG) + gcc -std=c99 -Wall -Werror $(PROG) + +noW: $(PROG) + gcc $(PROG) + +debug: $(PROG) + gcc -g $(PROG) |