diff options
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | Makefile | 4 |
2 files changed, 2 insertions, 7 deletions
@@ -2,9 +2,4 @@ batchd newbatch run createspool -work -done -new -tmp -failed runfd @@ -1,5 +1,5 @@ CC = cc -CFLAGS = -O2 -Wall -Wextra -Werror -pedantic -std=c99 +CFLAGS = -g -O2 -Wall -Wextra -Werror -pedantic -std=c99 all: newbatch createspool batchd runfd @@ -18,4 +18,4 @@ runfd: runfd.c .PHONY: clean clean: - rm -f newbatch createspool batchd + rm -f newbatch createspool batchd runfd |