]> git.tdb.fi Git - ext/subsurface.git/blob - Makefile
Subsurface 1.1
[ext/subsurface.git] / Makefile
1 VERSION=1.1
2
3 CC=gcc
4 CFLAGS=-Wall -Wno-pointer-sign -g
5 INSTALL=install
6
7 # these locations seem to work for SuSE and Fedora
8 # prefix = $(HOME)
9 prefix = $(DESTDIR)/usr
10 BINDIR = $(prefix)/bin
11 DATADIR = $(prefix)/share
12 DESKTOPDIR = $(DATADIR)/applications
13 ICONPATH = $(DATADIR)/icons/hicolor
14 ICONDIR = $(ICONPATH)/scalable/apps
15 MANDIR = $(DATADIR)/man/man1
16 gtk_update_icon_cache = gtk-update-icon-cache -f -t $(ICONPATH)
17
18 NAME = subsurface
19 ICONFILE = $(NAME).svg
20 DESKTOPFILE = $(NAME).desktop
21 MANFILES = $(NAME).1
22
23 # find libdivecomputer; we don't trust pkg-config here given how young
24 # libdivecomputer still is - so we check /usr/local and /usr and then we
25 # give up. You can override by simply setting it here
26 #
27 libdc-local := $(wildcard /usr/local/include/libdivecomputer/*)
28 libdc-usr := $(wildcard /usr/include/libdivecomputer/*)
29
30 ifneq ($(strip $(libdc-local)),)
31         LIBDIVECOMPUTERDIR = /usr/local
32         LIBDIVECOMPUTERINCLUDES = $(LIBDIVECOMPUTERDIR)/include/libdivecomputer
33         LIBDIVECOMPUTERARCHIVE = $(LIBDIVECOMPUTERDIR)/lib/libdivecomputer.a
34 else ifneq ($(strip $(libdc-usr)),)
35         LIBDIVECOMPUTERDIR = /usr
36         LIBDIVECOMPUTERINCLUDES = $(LIBDIVECOMPUTERDIR)/include/libdivecomputer
37         LIBDIVECOMPUTERARCHIVE = $(LIBDIVECOMPUTERDIR)/lib/libdivecomputer.a
38 else
39 $(error Cannot find libdivecomputer - please edit Makefile)
40 endif
41
42 # Libusb-1.0 is only required if libdivecomputer was built with it.
43 # And libdivecomputer is only built with it if libusb-1.0 is
44 # installed. So get libusb if it exists, but don't complain
45 # about it if it doesn't.
46 LIBUSB = $(shell pkg-config --libs libusb-1.0 2> /dev/null)
47
48 LIBXML2 = $(shell xml2-config --libs)
49 LIBGTK = $(shell pkg-config --libs gtk+-2.0 glib-2.0 gconf-2.0)
50 LIBDIVECOMPUTERCFLAGS = -I$(LIBDIVECOMPUTERINCLUDES)
51 LIBDIVECOMPUTER = $(LIBDIVECOMPUTERARCHIVE) $(LIBUSB)
52
53 LIBS = $(LIBXML2) $(LIBGTK) $(LIBDIVECOMPUTER) -lpthread
54
55 OBJS =  main.o dive.o profile.o info.o equipment.o divelist.o \
56         parse-xml.o save-xml.o libdivecomputer.o print.o uemis.o \
57         gtk-gui.o
58
59 $(NAME): $(OBJS)
60         $(CC) $(LDFLAGS) -o $(NAME) $(OBJS) $(LIBS)
61
62 install: $(NAME)
63         $(INSTALL) -d -m 755 $(BINDIR)
64         $(INSTALL) $(NAME) $(BINDIR)
65         $(INSTALL) -d -m 755 $(DESKTOPDIR)
66         $(INSTALL) $(DESKTOPFILE) $(DESKTOPDIR)
67         $(INSTALL) -d -m 755 $(ICONDIR)
68         $(INSTALL) $(ICONFILE) $(ICONDIR)
69         $(gtk_update_icon_cache)
70         $(INSTALL) -d -m 644 $(MANDIR)
71         $(INSTALL) $(MANFILES) $(MANDIR)
72
73 parse-xml.o: parse-xml.c dive.h
74         $(CC) $(CFLAGS) `pkg-config --cflags glib-2.0` -c `xml2-config --cflags`  parse-xml.c
75
76 save-xml.o: save-xml.c dive.h
77         $(CC) $(CFLAGS) `pkg-config --cflags glib-2.0` -c save-xml.c
78
79 dive.o: dive.c dive.h
80         $(CC) $(CFLAGS) `pkg-config --cflags glib-2.0` -c dive.c
81
82 main.o: main.c dive.h display.h divelist.h
83         $(CC) $(CFLAGS) `pkg-config --cflags glib-2.0 gconf-2.0` \
84                 -c main.c
85
86 profile.o: profile.c dive.h display.h divelist.h
87         $(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` -c profile.c
88
89 info.o: info.c dive.h display.h display-gtk.h divelist.h
90         $(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` -c info.c
91
92 equipment.o: equipment.c dive.h display.h divelist.h
93         $(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` -c equipment.c
94
95 divelist.o: divelist.c dive.h display.h divelist.h
96         $(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` -c divelist.c
97
98 print.o: print.c dive.h display.h display-gtk.h
99         $(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` -c print.c
100
101 libdivecomputer.o: libdivecomputer.c dive.h display.h display-gtk.h libdivecomputer.h
102         $(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` \
103                         $(LIBDIVECOMPUTERCFLAGS) \
104                         -c libdivecomputer.c
105
106 gtk-gui.o: gtk-gui.c dive.h display.h divelist.h display-gtk.h libdivecomputer.h Makefile
107         $(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0 gconf-2.0` \
108                         $(LIBDIVECOMPUTERCFLAGS) \
109                         -DVERSION_STRING='"v$(VERSION)"' \
110                         -c gtk-gui.c
111
112 uemis.o: uemis.c uemis.h
113         $(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` -c uemis.c
114
115 clean:
116         rm -f $(OBJS) *~ $(NAME)