blob: 92ae3fa6e953a28ae0ab6d14cba920abb8a411d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Makefile for miragextract
####
# Packagers: override these the make command line as needed.
# Intended for optimizations, but you could include other flags here.
OPTFLAGS=-O2
# -L, -l, and maybe -Wl flags here.
LDEXTRA=
# Where 'make install' puts things.
PREFIX=/usr/local
BINDIR=$(PREFIX)/bin
MANDIR=$(PREFIX)/share/man
MAN1DIR=$(MANDIR)/man1
DOCDIR=$(PREFIX)/share/doc/$(PROJ)
DESTDIR=
# Booleans: 'y' or 'n' for these.
STRIPBIN=y
GZIPMAN=y
#
###
PROJ=miragextract
DOCS=README FAQ ChangeLog $(PROJ).html
SNDFILE_CFLAGS:=$(shell pkg-config --cflags sndfile)
SNDFILE_LIBS:=$(shell pkg-config --libs sndfile)
MIRAGE_CFLAGS:=$(shell pkg-config --cflags libmirage)
MIRAGE_LIBS:=$(shell pkg-config --libs libmirage)
CFLAGS=-Wall $(OPTFLAGS) $(MIRAGE_CFLAGS) $(SNDFILE_CFLAGS)
LDFLAGS=$(MIRAGE_LIBS) $(SNDFILE_LIBS)$ $(LDEXTRA)
all: $(PROJ)
man: $(PROJ).1
html: $(PROJ).html
test: all
./$(PROJ) test.cue
push: all man html
git add $(PROJ).1 $(PROJ).html
git commit -m'auto-regenerate man/html pages' || true
git push
$(PROJ).1: $(PROJ).rst
rst2man.py $(PROJ).rst > $(PROJ).1
$(PROJ).html: $(PROJ).rst
rst2html4.py $(PROJ).rst > $(PROJ).html
ifeq ($(shell whoami),root)
CHOWN=chown
else
CHOWN=: chown
endif
install: all man html
mkdir -p $(DESTDIR)$(BINDIR) $(DESTDIR)$(MAN1DIR) $(DESTDIR)$(DOCDIR)
cp $(PROJ) $(DESTDIR)$(BINDIR)
$(CHOWN) root:root $(DESTDIR)$(BINDIR)/$(PROJ)
chmod 755 $(DESTDIR)$(BINDIR)/$(PROJ)
ifeq ($(STRIPBIN),y)
strip $(DESTDIR)$(BINDIR)/$(PROJ)
endif
cp $(PROJ).1 $(DESTDIR)$(MAN1DIR)
ifeq ($(GZIPMAN),y)
gzip -9 $(DESTDIR)$(MAN1DIR)/$(PROJ).1
endif
$(CHOWN) root:root $(DESTDIR)$(MAN1DIR)/$(PROJ).1
chmod 644 $(DESTDIR)$(MAN1DIR)/$(PROJ).1
for i in $(DOCS); do \
cp $$i $(DESTDIR)$(DOCDIR); \
chmod 644 $(DESTDIR)$(DOCDIR)/$$i; \
$(CHOWN) root:root $(DESTDIR)$(DOCDIR)/$$i; \
done
.PHONY: all man html test push install
|