summaryrefslogtreecommitdiff
path: root/src/cmd/dice/makefile
blob: 2acc850462680fbacaa2374889423e610ab2d8a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CFLAGS=-Wall -Werror

build: dice
	@cp dice $(PROROOT)/build/bin/dice

dice: dice.c
	$(CC) $(CFLAGS) -o dice dice.c

clean:
	@rm -r dice

.PHONY: build clean