forked from danielrichman/cifer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
129 lines (97 loc) · 2.8 KB
/
Makefile
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#!/usr/bin/make -f
# -*- makefile -*-
# Cifer: Automating classical cipher cracking in C
# Copyright (C) 2008 Daniel Richman & Simrun Basuita
#
# Cifer is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Cifer is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Cifer. If not, see <http://www.gnu.org/licenses/>.
SHELL = /bin/sh
version := $(shell cat VERSION)
CC = gcc
CFLAGS = -Wall -pedantic
DEFS = -DVERSION="\"$(version)\""
LINKLIBS = -lreadline
prefix = /usr/local
exec_prefix = $(prefix)
bindir = $(exec_prefix)/bin
datarootdir = $(prefix)/share
mandir = $(datarootdir)/man
man1dir = $(mandir)/man1
INSTALL = install
INSTALL_PROGRAM = $(INSTALL) -m 755
INSTALL_DATA = $(INSTALL) -m 644
INSTALL_DIR = $(INSTALL) -d
srcmandir = manpages/
rm = rm -f
rmdir = rm -rf
mkdir = mkdir -p
cfiles := $(wildcard src/*.c)
objects := $(patsubst %.c,%.o,$(cfiles))
headers := $(wildcard src/*.h src/*.inc)
allfiles := $(wildcard *)
all : cifer
cifer : $(objects)
$(CC) $(CFLAGS) $(LINKLIBS) -o $@ $(objects)
src/%.o : src/%.c $(headers)
$(CC) $(DEFS) -c $(CFLAGS) $< -o $@
.PHONY : all \
\
install \
install-man \
install-bin \
install-dir-man \
install-dir-bin \
\
uninstall \
uninstall-man \
uinstall-bin \
\
clean \
distclean \
\
dist
install : install-man install-bin
install-dir-man :
[ -d $(DESTDIR)$(man1dir) ] || $(INSTALL_DIR) $(DESTDIR)$(man1dir)
install-dir-bin :
[ -d $(DESTDIR)$(bindir) ] || $(INSTALL_DIR) $(DESTDIR)$(bindir)
install-man : install-dir-man
$(INSTALL_DATA) $(srcmandir)/cifer.1 \
$(DESTDIR)$(man1dir)/cifer.1
$(INSTALL_DATA) $(srcmandir)/cifer-dict.1 \
$(DESTDIR)$(man1dir)/cifer-dict.1
install-bin : all install-dir-bin
$(INSTALL_PROGRAM) cifer $(DESTDIR)$(bindir)/cifer
$(INSTALL_PROGRAM) cifer-dict $(DESTDIR)$(bindir)/cifer-dict
uninstall: uninstall-man uninstall-bin
uninstall-man :
$(rm) $(DESTDIR)$(man1dir)/cifer.1
$(rm) $(DESTDIR)$(man1dir)/cifer-dict.1
uninstall-bin :
$(rm) $(DESTDIR)$(bindir)/cifer
$(rm) $(DESTDIR)$(bindir)/cifer-dict
clean :
$(rm) cifer $(objects)
distclean : clean
dist : clean
$(mkdir) cifer-$(version)
for i in $(allfiles); do \
cp --recursive $$i cifer-$(version); \
done
$(rmdir) cifer-$(version)/copy-header \
cifer-$(version)/notes \
cifer-$(version)/tests
tar cf - cifer-$(version) | \
gzip -9f > \
cifer-$(version).tar.gz
$(rmdir) cifer-$(version)