chiark / gitweb /
noip.c: Shut up some GCC warnings.
[preload-hacks] / Makefile
CommitLineData
bfa74564
MW
1### -*-makefile-*-
2###
3### Makefile for preload-hacks
4###
5### (c) 2008 Straylight/Edgeware
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This file is part of the preload-hacks package.
11###
12### Preload-hacks are free software; you can redistribute it and/or modify
13### them under the terms of the GNU General Public License as published by
14### the Free Software Foundation; either version 2 of the License, or (at
15### your option) any later version.
16###
17### Preload-hacks distributed in the hope that it will be useful, but WITHOUT
18### ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19### FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
20### more details.
21###
22### You should have received a copy of the GNU General Public License along
23### with mLib; if not, write to the Free Software Foundation, Inc., 59 Temple
24### Place - Suite 330, Boston, MA 02111-1307, USA.
25
26PACKAGE = preload-hacks
27VERSION := $(shell ./auto-version)
28
29###--------------------------------------------------------------------------
30### Configuration.
31
32## Where to install things.
33prefix = /usr/local
34exec_prefix = ${prefix}
35bindir = ${exec_prefix}/bin
36libdir = ${exec_prefix}/lib
37datadir = ${prefix}/share
38mandir = ${datadir}/man
39man1dir = ${mandir}/man1
40
41## Private installation tree for packagers.
42DESTDIR =
43
7a863a39
MW
44###--------------------------------------------------------------------------
45### Quiet building.
46
47## Verbosity.
48V = 0
49
50## Compilation.
51V_CC = $(V_CC_$(V))$(CC)
52V_CC_0 = @echo " CC $@";
53
54## Linking.
55V_LD = $(V_LD_$(V))$(LD)
56V_LD_0 = @echo " LD $@";
57
58## Generation.
59V_GEN = $(V_GEN_$(V))
60V_GEN_0 = @echo " GEN $@";
61
bfa74564
MW
62###--------------------------------------------------------------------------
63### Build parameters.
64
65## Mess with these if you like.
66CC = gcc
67LD = gcc
68CFLAGS = -O2 -g -Wall
69LDFLAGS =
70LDLIBS = -ldl
71INSTALL = install
72INST_BIN = $(INSTALL) -c -m755
73INST_LIB = $(INSTALL) -c -m644
74INST_MAN = $(INSTALL) -c -m644
75INST_BIN = $(INSTALL) -c -m755
76MKDIRS = $(INSTALL) -d -m755
77
78## Probably best if you leave these alone.
79REAL_CFLAGS = $(CFLAGS) -fPIC
80REAL_LDFLAGS = $(LDFLAGS) -shared
81
82###--------------------------------------------------------------------------
83### Main targets.
84
85## noip
86HACKS += noip
87NOIP_SOURCES = noip.c
88DISTFILES += $(NOIP_SOURCES)
89
90## uopen
91HACKS += uopen
92UOPEN_SOURCES = uopen.c
93DISTFILES += $(UOPEN_SOURCES)
94
95## Libraries.
96LIBS += $(addsuffix .so, $(HACKS))
97TARGETS += $(LIBS)
98
99## Scripts.
100SCRIPTS = $(HACKS)
101TARGETS += $(SCRIPTS)
102DISTFILES += withlib.in
103
104## Manual pages.
105MAN1 += $(addsuffix .1, $(HACKS))
106DISTFILES += $(MAN1)
107
108###--------------------------------------------------------------------------
109### Distribution arrangements.
110
111## Names.
112distdir = $(PACKAGE)-$(VERSION)
113DISTTAR = $(distdir).tar.gz
114
115## Distribute the build utilities.
116DISTFILES += Makefile
117DISTFILES += auto-version
118
119## Documentation.
120DISTFILES += README
121
122## Licensing.
123DISTFILES += COPYING
124
125## Debian.
126debpkg = noip uopen
127DISTFILES += debian/changelog debian/copyright
128DISTFILES += debian/control debian/rules
129DISTFILES += $(patsubst %, debian/%.install, $(debpkg))
130DISTFILES += $(patsubst %, debian/%.lintian-overrides, \
131 $(debpkg))
132
133###--------------------------------------------------------------------------
134### Building.
135
e4976bb0 136all: $(TARGETS)
bfa74564
MW
137.PHONY: ALL
138
139clean:
140 rm -f *.o $(TARGETS)
141.PHONY: clean
142
143## Building sources.
e4976bb0 144%.o: %.c
7a863a39 145 $(V_CC) -c $(REAL_CFLAGS) $< -o $@
bfa74564
MW
146
147## Constructing preload hacks.
148noip.so: $(patsubst %.c, %.o, $(NOIP_SOURCES))
7a863a39 149 $(V_LD) $(REAL_LDFLAGS) $< $(LDLIBS) -o $@
bfa74564 150uopen.so: $(patsubst %.c, %.o, $(UOPEN_SOURCES))
7a863a39 151 $(V_LD) $(REAL_LDFLAGS) $< $(LDLIBS) -o $@
bfa74564
MW
152
153## Constructing the scripts.
7a863a39
MW
154$(SCRIPTS): %: withlib.in
155 $(V_GEN)sed "s/@lib@/$@/" withlib.in >$@.new && \
156 chmod +x $@.new && mv $@.new $@
bfa74564
MW
157
158###--------------------------------------------------------------------------
159### Installation.
160
2906706d 161install: all
bfa74564 162 $(MKDIRS) $(DESTDIR)$(bindir)
2906706d 163 $(INST_BIN) $(SCRIPTS) $(DESTDIR)$(bindir)
bfa74564
MW
164 $(MKDIRS) $(DESTDIR)$(libdir)
165 $(INST_BIN) $(LIBS) $(DESTDIR)$(libdir)
166 $(MKDIRS) $(DESTDIR)$(man1dir)
2906706d 167 $(INST_MAN) $(MAN1) $(DESTDIR)$(man1dir)
bfa74564
MW
168.PHONY: install
169
2906706d 170uninstall:
171 rm -f $(addprefix $(DESTDIR)$(libdir)/, $(LIBS))
172 rm -f $(addprefix $(DESTDIR)$(bindir)/, $(SCRIPTS))
173 rm -f $(addprefix $(DESTDIR)$(man1dir)/, $(MAN1))
bfa74564
MW
174.PHONY: uninstall
175
176###--------------------------------------------------------------------------
177### Distribution.
178
2906706d 179distdir:
bfa74564
MW
180 rm -rf $(distdir)
181 mkdir $(distdir)
182 echo $(VERSION) >$(distdir)/RELEASE
183 for i in $(DISTFILES); do \
184 case "$$i" in \
185 */*) \
186 d=$${i%/*} && $(MKDIRS) $(distdir)/$$d || exit 1 \
187 ;; \
188 esac; \
189 ln $$i $(distdir)/$$i || exit 1; \
190 done
191.PHONY: distdir
192
2906706d 193dist: distdir
bfa74564
MW
194 tar chozf $(DISTTAR) $(distdir)
195 rm -rf $(distdir)
196.PHONY: dist
197
198distcheck: dist
199 rm -rf _distcheck
200 mkdir _distcheck
201 cd _distcheck && \
202 tar xvfz ../$(DISTTAR) && \
203 cd $(distdir) && \
204 make && \
205 make install DESTDIR=../_install && \
206 make dist
207 rm -rf _distcheck
208
209###----- That's all, folks --------------------------------------------------