]> git.tuebingen.mpg.de Git - osl.git/blob - Makefile
d0427c6aef05d21b7752832c6ae282268d9f90f4
[osl.git] / Makefile
1 # where to install
2 PREFIX ?= /usr/local
3 libdir := $(PREFIX)/lib
4 includedir := $(PREFIX)/include
5 bindir := $(PREFIX)/bin
6 mandir := $(PREFIX)/man/man1
7
8 objects := osl.o util.o rbtree.o sha1.o
9 fsck_objects := fsck.o osl.o util.o rbtree.o sha1.o oslfsck.lsg.o
10 deps := $(sort $(objects:.o=.d) $(fsck_objects:.o=.d))
11 headers := osl.h
12 executables := oslfsck
13 man_pages := oslfsck.1
14
15 INSTALL := install
16 ifeq "$(origin CC)" "default"
17         CC := cc
18 endif
19 MKDIR := mkdir -p
20 RM := rm -f
21 LN := ln
22 LD := ld
23 OBJCOPY := objcopy
24
25 # libosl's versioning consists of three numbers. Let's call them x, y and z.
26 x := 0
27 y := 1
28 z := 3
29 VERSION := $(x).$(y).$(z)
30
31 OSL_CPPFLAGS += -DOSL_VERSION='"$(VERSION)"'
32
33 OSL_CFLAGS += -Wno-sign-compare -g -Wunused -Wundef -W
34 OSL_CFLAGS += -Wredundant-decls
35 OSL_CFLAGS += -Os
36 OSL_CFLAGS += -Wall
37 OSL_CFLAGS += -Wuninitialized
38 OSL_CFLAGS += -Wchar-subscripts
39 OSL_CFLAGS += -Wformat-security
40 OSL_CFLAGS += -Werror-implicit-function-declaration
41 OSL_CFLAGS += -Wmissing-format-attribute
42 OSL_CFLAGS += -Wunused-macros
43 OSL_CFLAGS += -Wbad-function-cast
44 OSL_CFLAGS += -fPIC
45 OSL_CFLAGS += -fvisibility=hidden
46
47 OSL_LDFLAGS += -Wl,-soname,$(soname)
48 OSL_LDFLAGS += -Wl,-z,defs
49 OSL_LDFLAGS += --shared
50
51 # On ELf-based systems, the following conventions apply (see dhweeler's
52 # Program Library HOWTO):
53 #
54 # The soname has the prefix ``lib'', the name of the library, the
55 # phrase ``.so'', followed by a period and a version number that is
56 # incremented whenever the interface changes.
57 libname := osl
58 soname := lib$(libname).so.$(x)
59
60 # The real name adds to the soname a period, a minor number, another
61 # period, and the release number.
62 realname := $(soname).$(y).$(z)
63
64 # In addition, there's the name that the compiler uses when requesting
65 # a library, (I'll call it the ``linker name''), which is simply the
66 # soname without any version number.
67 linkername := lib$(libname).so
68
69 all: $(realname) $(executables) $(man_pages) $(headers)
70 shared: $(realname)
71
72 ifeq ($(findstring clean, $(MAKECMDGOALS)),)
73 -include $(deps)
74 endif
75
76 # List osl.h in the prerequisites to make sure we generate it before attempting
77 # to run the compiler. This matters only when the .d file does not exist.
78 %.o: %.c osl.h Makefile errtab.h
79         $(CC) $(OSL_CPPFLAGS) $(CPPFLAGS) \
80                 -c -MMD -MF $(*F).d -MT $@ \
81                 $(OSL_CFLAGS) $(CFLAGS) $<
82
83 fsck.o: oslfsck.lsg.h
84 oslfsck: $(fsck_objects)
85         $(CC) -o $@ $(fsck_objects) $(LDFLAGS) -llopsub
86
87 %.lsg.c: %.suite
88         lopsubgen --gen-c < $<
89
90 %.lsg.h: %.suite
91         lopsubgen --gen-header < $<
92
93 %.1: %.suite
94         lopsubgen --gen-man=$@ < $<
95
96 $(realname): $(objects)
97         $(CC) $(OSL_LDFLAGS) $(LDFLAGS) -o $@ $(objects)
98
99 $(libname).sym: osl.h.in
100         sed -Ene '/^int|^const/{s/.*(osl_.*)\(.*/\1/; p;}' $< > $@
101 $(libname).ga: $(objects)
102         $(LD) -r -o $@ $(objects)
103 lib$(libname).a: $(libname).ga $(libname).sym
104         $(OBJCOPY) --keep-global-symbols $(libname).sym $(libname).ga $@
105
106 osl_errors.h: errlist
107         echo '/** public error codes of the osl library. */' > $@
108         sed -e 's/\([A-Z_]*\)   .*/     E_OSL_\1/' \
109                 -e '1s/^/enum osl_errors {/1' \
110                 -e '1s/$$/=1/1' \
111                 -e '$$!s/$$/,/g' \
112                 -e '$$s/$$/};/1' $< >> $@
113
114 errtab.h: errlist
115         sed -e 's/^\([A-Z_]*\)\s*\(.*\)/OSL_ERROR(E_OSL_\1, \2)/g' $< > $@
116
117 osl.h: osl.h.in osl_errors.h Makefile
118         echo '#ifndef _OSL_H' > $@
119         echo '#define _OSL_H' >> $@
120         cat osl.h.in osl_errors.h >> $@
121         echo '#endif /* _OSL_H */' >> $@
122 clean:
123         rm -f *.o $(realname) osl.h osl_errors.h errtab.h \
124                 oslfsck *.a *.ga *.sym *.lsg.* *.d
125
126 distclean: clean
127         rm -f web/index.html web/oslfsck.1.html web/osl.png
128         rm -rf web/doxygen
129
130 install-bin: $(executables)
131         $(MKDIR) $(bindir)
132         $(INSTALL) -m 755 $(executables) $(bindir)
133
134 install-man: $(man_pages)
135         $(MKDIR) $(mandir)
136         $(INSTALL) -m 644 $(man_pages) $(mandir)
137
138 install-lib: $(realname) $(headers)
139         $(MKDIR) $(libdir) $(includedir)
140         $(RM) $(libdir)/$(linkername)
141         $(LN) -s $(soname) $(libdir)/$(linkername)
142         $(INSTALL) -m 755 $(realname) $(libdir)
143         $(INSTALL) -m 644 $(headers) $(includedir)
144
145 install: all install-bin install-man install-lib
146 www: web/index.html web/osl.png web/doxygen/index.html
147
148 .PHONY: all shared clean install install-bin install-man install-lib www
149
150 web/osl.png: web/osl.pdf Makefile
151         convert -scale 200x200 $< $@
152
153 web/index.html: oslfsck.1 web/index.html.in INSTALL README
154         sed -e '/@README@/,$$d' web/index.html.in > $@
155         markdown < README >> $@
156         sed -e '1,/@README@/d' -e '/@INSTALL@/,$$d' web/index.html.in >> $@
157         markdown < INSTALL >> $@
158         sed -e '1,/@INSTALL@/d' -e '/@MAN_PAGE@/,$$d' web/index.html.in >> $@
159         groff -m man -Thtml -P -l oslfsck.1 | sed -e '1,/^<body>/d; /^<\/body>/,$$d' >> $@
160         sed -e '1,/@MAN_PAGE@/d' web/index.html.in >> $@
161
162 web/doxygen/index.html: $(wildcard *.c *.h) web/Doxyfile web/header.html \
163                 web/footer.html
164         doxygen web/Doxyfile