diff options
author | Mattias Andrée <maandree@kth.se> | 2016-07-12 10:51:08 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-07-12 10:51:08 +0200 |
commit | 9844a38c811d8c6c95eeac15efcb262ea88b2484 (patch) | |
tree | 3d7157c6b7db27900d190736d5904f7587a7028c /Makefile | |
parent | Implement re-exec (diff) | |
download | coopgammad-9844a38c811d8c6c95eeac15efcb262ea88b2484.tar.gz coopgammad-9844a38c811d8c6c95eeac15efcb262ea88b2484.tar.bz2 coopgammad-9844a38c811d8c6c95eeac15efcb262ea88b2484.tar.xz |
Rename project: gammad => coopgammad
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,9 +1,9 @@ -PKGNAME = gammad -COMMAND = gammad +PKGNAME = coopgammad +COMMAND = coopgammad KERNEL = $(shell uname | tr '[A-Z]_' '[a-z]-') -SRC = filter gammad output ramps util message server +SRC = filter coopgammad output ramps util message server OPTIMISE = -Og -g @@ -28,9 +28,9 @@ CPPFLAGS = -D'PKGNAME="$(PKGNAME)"' -D'COMMAND="$(COMMAND)"' -D_XOPEN_SOURCE=700 .PHONY: all -all: bin/gammad +all: bin/coopgammad -bin/gammad: $(foreach S,$(SRC),obj/$(S).o) +bin/coopgammad: $(foreach S,$(SRC),obj/$(S).o) @mkdir -p -- "$$(dirname -- "$@")" $(CC) $(LDFLAGS) -o $@ $^ |