diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Makefile | 5 |
2 files changed, 6 insertions, 1 deletions
@@ -2,3 +2,5 @@ obj/ build/ tags + +compile_flags.txt @@ -1,5 +1,5 @@ CC = clang -CFLAGS = -Wall -std=c89 -D _DEFAULT_SOURCE +CFLAGS = -Wall -std=c89 -D_DEFAULT_SOURCE LDFLAGS = -lm BUILDDIR = build SOURCEDIR = src @@ -44,3 +44,6 @@ clean: .PHONY: all all: clean build + +devsetup: + @echo "$(CFLAGS)" | tr ' ' '\n' > compile_flags.txt |