]> git.tdb.fi Git - ext/subsurface.git/blob - Makefile
Makefile fixes
[ext/subsurface.git] / Makefile
1 VERSION=1.0
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/lib/libdivecomputer.a)
28 libdc-local64 := $(wildcard /usr/local/lib64/libdivecomputer.a)
29 libdc-usr := $(wildcard /usr/lib/libdivecomputer.a)
30 libdc-usr64 := $(wildcard /usr/lib64/libdivecomputer.a)
31
32 ifneq ($(strip $(libdc-local)),)
33         LIBDIVECOMPUTERDIR = /usr/local
34         LIBDIVECOMPUTERINCLUDES = $(LIBDIVECOMPUTERDIR)/include/libdivecomputer
35         LIBDIVECOMPUTERARCHIVE = $(LIBDIVECOMPUTERDIR)/lib/libdivecomputer.a
36 else ifneq ($(strip $(libdc-local64)),)
37         LIBDIVECOMPUTERDIR = /usr/local
38         LIBDIVECOMPUTERINCLUDES = $(LIBDIVECOMPUTERDIR)/include/libdivecomputer
39         LIBDIVECOMPUTERARCHIVE = $(LIBDIVECOMPUTERDIR)/lib64/libdivecomputer.a
40 else ifneq ($(strip $(libdc-usr)),)
41         LIBDIVECOMPUTERDIR = /usr
42         LIBDIVECOMPUTERINCLUDES = $(LIBDIVECOMPUTERDIR)/include/libdivecomputer
43         LIBDIVECOMPUTERARCHIVE = $(LIBDIVECOMPUTERDIR)/lib/libdivecomputer.a
44 else ifneq ($(strip $(libdc-usr64)),)
45         LIBDIVECOMPUTERDIR = /usr
46         LIBDIVECOMPUTERINCLUDES = $(LIBDIVECOMPUTERDIR)/include/libdivecomputer
47         LIBDIVECOMPUTERARCHIVE = $(LIBDIVECOMPUTERDIR)/lib64/libdivecomputer.a
48 else
49 $(error Cannot find libdivecomputer - please edit Makefile)
50 endif
51
52 # Libusb-1.0 is only required if libdivecomputer was built with it.
53 # And libdivecomputer is only built with it if libusb-1.0 is
54 # installed. So get libusb if it exists, but don't complain
55 # about it if it doesn't.
56 LIBUSB = $(shell pkg-config --libs libusb-1.0 2> /dev/null)
57
58 LIBXML2 = $(shell xml2-config --libs)
59 LIBGTK = $(shell pkg-config --libs gtk+-2.0 glib-2.0 gconf-2.0)
60 LIBDIVECOMPUTERCFLAGS = -I$(LIBDIVECOMPUTERINCLUDES)
61 LIBDIVECOMPUTER = $(LIBDIVECOMPUTERARCHIVE) $(LIBUSB)
62
63 LIBS = $(LIBXML2) $(LIBGTK) $(LIBDIVECOMPUTER) -lpthread
64
65 OBJS =  main.o dive.o profile.o info.o equipment.o divelist.o \
66         parse-xml.o save-xml.o libdivecomputer.o print.o uemis.o \
67         gtk-gui.o
68
69 $(NAME): $(OBJS)
70         $(CC) $(LDFLAGS) -o $(NAME) $(OBJS) $(LIBS)
71
72 install: $(NAME)
73         $(INSTALL) -d -m 755 $(BINDIR)
74         $(INSTALL) $(NAME) $(BINDIR)
75         $(INSTALL) -d -m 755 $(DESKTOPDIR)
76         $(INSTALL) $(DESKTOPFILE) $(DESKTOPDIR)
77         $(INSTALL) -d -m 755 $(ICONDIR)
78         $(INSTALL) $(ICONFILE) $(ICONDIR)
79         $(gtk_update_icon_cache)
80         $(INSTALL) -d -m 755 $(MANDIR)
81         $(INSTALL) -m 644 $(MANFILES) $(MANDIR)
82
83 parse-xml.o: parse-xml.c dive.h
84         $(CC) $(CFLAGS) `pkg-config --cflags glib-2.0` -c `xml2-config --cflags`  parse-xml.c
85
86 save-xml.o: save-xml.c dive.h
87         $(CC) $(CFLAGS) `pkg-config --cflags glib-2.0` -c save-xml.c
88
89 dive.o: dive.c dive.h
90         $(CC) $(CFLAGS) `pkg-config --cflags glib-2.0` -c dive.c
91
92 main.o: main.c dive.h display.h divelist.h
93         $(CC) $(CFLAGS) `pkg-config --cflags glib-2.0 gconf-2.0` \
94                 -c main.c
95
96 profile.o: profile.c dive.h display.h divelist.h
97         $(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` -c profile.c
98
99 info.o: info.c dive.h display.h display-gtk.h divelist.h
100         $(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` -c info.c
101
102 equipment.o: equipment.c dive.h display.h divelist.h
103         $(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` -c equipment.c
104
105 divelist.o: divelist.c dive.h display.h divelist.h
106         $(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` -c divelist.c
107
108 print.o: print.c dive.h display.h display-gtk.h
109         $(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` -c print.c
110
111 libdivecomputer.o: libdivecomputer.c dive.h display.h display-gtk.h libdivecomputer.h
112         $(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` \
113                         $(LIBDIVECOMPUTERCFLAGS) \
114                         -c libdivecomputer.c
115
116 gtk-gui.o: gtk-gui.c dive.h display.h divelist.h display-gtk.h libdivecomputer.h
117         $(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0 gconf-2.0` \
118                         $(LIBDIVECOMPUTERCFLAGS) \
119                         -DVERSION_STRING='"v$(VERSION)"' \
120                         -c gtk-gui.c
121
122 uemis.o: uemis.c uemis.h
123         $(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` -c uemis.c
124
125 clean:
126         rm -f $(OBJS) *~ $(NAME)