You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
345 B
Makefile
16 lines
345 B
Makefile
9 years ago
|
all: deps build
|
||
|
|
||
|
build: build-dmrstream
|
||
|
|
||
|
build-dmrstream:
|
||
|
go build ./cmd/dmrstream/
|
||
|
@ls -alh dmrstream
|
||
|
|
||
|
deps: godeps oggfwd
|
||
|
|
||
|
godeps:
|
||
|
go get -v $(shell go list -f '{{ join .Deps "\n" }}' ./... | sort -u | egrep '(gopkg|github)' | grep -v '/tehmaze/go-dmr')
|
||
|
|
||
|
oggfwd:
|
||
|
$(CC) -O2 -pipe -Wall -ffast-math -fsigned-char -lshout -pthread -o $@ $@.c
|