rename the project into madtty.
[apps/madtty.git] / Makefile.in
1 # Makefile for librote
2 #
3 # Copyright (c) 2004 Bruno T. C. de Oliveira
4
5 # LICENSE INFORMATION:
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public
8 # License as published by the Free Software Foundation; either
9 # version 2 of the License, or (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # General Public License for more details.
15
16 # You should have received a copy of the GNU General Public
17 # License along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 # Copyright (c) 2002 Bruno T. C. de Oliveira
20
21 SOURCES=$(wildcard *.c)
22 HEADERS=$(wildcard *.h)
23
24 OBJECTS=$(patsubst %.c,%.o,$(SOURCES))
25
26 MADTTY_VERSION=@PACKAGE_VERSION@
27 MADTTY_SONAME=libmadtty.so.0
28
29 CC=@CC@
30 CFLAGS=@CFLAGS@ -Wall -fPIC
31 LIBS=@LIBS@
32 LDFLAGS=@LDFLAGS@
33 prefix=@prefix@
34 exec_prefix=@exec_prefix@
35 libdir=@libdir@
36 includedir=@includedir@
37 bindir=@bindir@
38
39 all: libmadtty.so.$(MADTTY_VERSION)
40
41 install: all
42         mkdir -p $(DESTDIR)$(includedir)/madtty
43         rm -f $(DESTDIR)$(includedir)/madtty/*.h
44         cp rote.h $(DESTDIR)$(includedir)/madtty
45         mkdir -p $(DESTDIR)$(libdir)
46         cp libmadtty.so.$(MADTTY_VERSION) $(DESTDIR)$(libdir)
47         cd $(DESTDIR)$(libdir) && ln -sf libmadtty.so.$(MADTTY_VERSION) libmadtty.so
48         cd $(DESTDIR)$(libdir) && ln -sf libmadtty.so.$(MADTTY_VERSION) $(MADTTY_SONAME)
49         mkdir -p $(DESTDIR)$(libdir)/pkgconfig
50         cp madtty.pc $(DESTDIR)$(libdir)/pkgconfig
51         @echo "-----------------------------------------------------------"
52         @echo "MADTTY - the Mad tty Emulation Library v$(MADTTY_VERSION)"
53         @echo
54         @echo "Include files installed at: $(DESTDIR)$(includedir)"
55         @echo "Library files installed at: $(DESTDIR)$(libdir)"
56         @echo "-----------------------------------------------------------"
57
58 libmadtty.so.$(MADTTY_VERSION): $(OBJECTS)
59         $(CC) $(CFLAGS) -shared -o $@ -Wl,-soname=$(MADTTY_SONAME) $(OBJECTS) $(LDFLAGS) $(LIBS)
60
61 .depends: $(SOURCES) $(HEADERS)
62         $(CC) $(CFLAGS) -MM $(SOURCES) >.depends
63
64 -include .depends
65
66 clean:
67         rm -f *.o .depends libmadtty.so.*
68
69 pristine: clean
70         rm -rf autom4te.cache configure config.status config.log Makefile madtty.pc
71
72 .PHONY: clean all install pristine
73