From e448957c4cc518234d8f6a92219fe649568131d6 Mon Sep 17 00:00:00 2001 From: Josh Date: Sat, 18 Jan 2025 00:02:36 -0500 Subject: 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 --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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) -- cgit v1.2.3