dinheiro

ref: master

./Makefile


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
.POSIX:
.SUFFIXES:

GO = go
RM = rm
GOFLAGS =
PREFIX = /usr/local
BINDIR = bin
MANDIR = share/man

all: dinheiro

dinheiro:
	$(GO) build $(GOFLAGS) -o dinheiro main.go

clean:
	$(RM) -rf dinheiro

.PHONY: dinheiro