bpm-tools/Makefile

26 lines
404 B
Makefile
Raw Normal View History

2011-12-05 19:45:34 -02:00
-include .config
2012-11-30 09:59:37 -02:00
PREFIX ?= /usr/local
INSTALL ?= install
BINDIR ?= $(PREFIX)/bin
2011-12-05 21:06:53 -02:00
CFLAGS += -Wall
2011-12-05 19:45:34 -02:00
LDLIBS += -lm
2011-12-05 17:36:31 -02:00
2012-11-30 09:59:37 -02:00
.PHONY: clean install dist
2012-06-01 08:54:49 -03:00
2011-12-05 21:06:30 -02:00
bpm: bpm.o
2011-12-05 17:36:31 -02:00
clean:
2011-12-05 21:06:53 -02:00
rm -f bpm *.o
2012-06-01 08:54:49 -03:00
2012-11-30 09:59:37 -02:00
install:
$(INSTALL) -d $(DESTDIR)$(BINDIR)
$(INSTALL) -t $(DESTDIR)$(BINDIR) bpm bpm-graph bpm-tag
2012-06-01 08:54:49 -03:00
dist:
mkdir -p dist
V=$$(git describe) && git archive --prefix=bpm-tools-$$V/ HEAD \
| gzip > dist/bpm-tools-$$V.tar.gz