-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathMakefile
69 lines (55 loc) · 1.56 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
#
# @file Makefile @brief bdf2c - converts bdf font files into C files
#
# Copyright (c) 2009, 2010 by Lutz Sammer. All Rights Reserved.
#
# Contributor(s):
#
# License: AGPLv3
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License.
#
# This program 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 Affero General Public License for more details.
#
# $Id$
CC = gcc
LIBS =
CFLAGS = -Os -Werror -W -Wall
LDFLAGS =
OBJS = bdf2c.o
HDRS =
FILES = Makefile AGPL-3.0.txt README.txt Changelog.txt
all: bdf2c
$(OBJS): $(HDRS) Makefile
bdf2c: $(OBJS)
$(CC) -o $@ $(CFLAGS) $(LDFLAGS) $^ $(LIBS)
#----------------------------------------------------------------------------
# Developer tools
doc: $(SRCS) $(HDRS) bdf2c.doxyfile
(cat bdf2c.doxyfile; \
echo 'PROJECT_NUMBER=${VERSION} $(if $(GIT_REV), (GIT-$(GIT_REV)))') \
| doxygen -
indent:
for i in $(OBJS:.o=.c) $(HDRS); do \
indent $$i; unexpand -a $$i > $$i.up; mv $$i.up $$i; \
done
clean:
-rm *.o *~
clobber: clean
-rm bdf2c
dist:
tar cjCf .. bdf2c-`date +%F-%H`.tar.bz2 \
$(addprefix bdf2c/, $(FILES) $(OBJS:.o=.c))
install:
strip --strip-unneeded -R .comment bdf2c
install -s bdf2c /usr/local/bin/
commit:
git commit $(OBJS:.o=.c) $(HDRS) $(FILES)
help:
@echo "make all|doc|indent|clean|clobber|dist|install|help"