Add support for the memsw limits that limit memory+swap
[compctl.git] / Makefile
blob1e1fe1c937ea718fc0a8083399e42bca943636fe
1 CFLAGS=-Wall -Wextra -Wno-unused -O3 -std=gnu99 -ggdb3
3 all: compctld compctl
5 compctld: cgroup.o compctld.o
6 compctl: cgroup.o compctl.o
8 compctl.o:: compctl.c help-in-quotes
10 help-in-quotes: README.client
11 cat $< | sed -e '0,/^Usage/d; /^Description/,$$d' | \
12 tail -n +3 | sed -e 's/\(.*\)/"\1\\n"/' >$@
14 clean:
15 rm -f compctl compctld compctl.o compctld.o cgroup.o help-in-quotes