aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHolden Rohrer <hr@hrhr.dev>2020-05-27 21:52:19 -0400
committerHolden Rohrer <hr@hrhr.dev>2020-05-27 21:52:19 -0400
commitcb9185b1948110dcf4c6483db44163fbc5ea942f (patch)
tree469213483259d8082a1c6a2f407901fec8ac37c4 /Makefile
parentd28aac66dca51fdd6d1683e90d9285c97ffa1e70 (diff)
getline written to comply to c99
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d3b1b6e..ee441d7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
.POSIX:
OBJS = strbst.o ll.o nodelink.o read.o main.o
CFLAGS = -Wall -pedantic
-CC = gcc
+CC = c99
tmplt: $(OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $@
clean: