aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-07-12 10:51:08 +0200
committerMattias Andrée <maandree@kth.se>2016-07-12 10:51:08 +0200
commit9844a38c811d8c6c95eeac15efcb262ea88b2484 (patch)
tree3d7157c6b7db27900d190736d5904f7587a7028c /Makefile
parentImplement re-exec (diff)
downloadcoopgammad-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--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 631b544..bb02f60 100644
--- a/Makefile
+++ b/Makefile
@@ -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 $@ $^