summaryrefslogtreecommitdiff
path: root/src/cmd/dice/makefile
blob: 5c0e384c77e38b9007284bf298640b70bef1d525 (plain)
1
2
3
4
5
6
7
8
9
10
all: dice
	@cp dice $(PROROOT)/build/bin/dice

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

clean:
	@rm -r dice

.PHONY: all clean