diff options
author | Holden Rohrer <hr@hrhr.dev> | 2020-07-09 20:33:48 -0400 |
---|---|---|
committer | Holden Rohrer <hr@hrhr.dev> | 2020-07-09 20:33:48 -0400 |
commit | 991a37f06b096ded9720502f5b7ba78f42aa4dbd (patch) | |
tree | eecdb3fc4da9ddc80fa0b873ed79c79f8e4c60b4 /Makefile | |
parent | 5daffbef5dc3bdba92bc9b0fbf4a198a3e999899 (diff) |
removed -g flag because binary is stripped
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ .POSIX: OBJS = strbst.o ll.o nodelink.o read.o main.o -CFLAGS = -Wall -pedantic -O2 -g +CFLAGS = -Wall -pedantic -O2 CC = c99 BIN = /usr/local/bin OUT = tmplt |