diff options
author | Marius Halden <marius.h@lden.org> | 2016-11-10 19:58:10 +0100 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2016-11-10 19:58:10 +0100 |
commit | 091c37e3eba95f1f9e74e8957050432eef294bad (patch) | |
tree | b4ab5a0033c0e4dae13b33d3b6b8854631c01f8e | |
parent | 8f0ad1035b76b61bd3946b551aff5065cb5bdb6c (diff) | |
download | runq-091c37e3eba95f1f9e74e8957050432eef294bad.tar.gz runq-091c37e3eba95f1f9e74e8957050432eef294bad.tar.bz2 runq-091c37e3eba95f1f9e74e8957050432eef294bad.tar.xz |
Makefile + gitignore
-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 |