X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=Makefile;h=862a5cbd0261b93b237ea869b1fe32fe88e4b556;hb=9463ca1f1c52ba1fd4b17946a209742685815c68;hp=c019cf8c751de31568cb4fbb4f04248876a236c8;hpb=2d0267f0dd1a2757e7ed57cee6f2b34bbb81d59e;p=ext%2Fsubsurface.git diff --git a/Makefile b/Makefile index c019cf8..862a5cb 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,40 @@ +VERSION=1.0 + CC=gcc CFLAGS=-Wall -Wno-pointer-sign -g - -LIBDIVECOMPUTERDIR = /usr/local -LIBDIVECOMPUTERINCLUDES = $(LIBDIVECOMPUTERDIR)/include/libdivecomputer -LIBDIVECOMPUTERARCHIVE = $(LIBDIVECOMPUTERDIR)/lib/libdivecomputer.a +INSTALL=install + +# these locations seem to work for SuSE and Fedora +# prefix = $(HOME) +prefix = /usr +DESTDIR = $(prefix)/bin +DESKTOPDIR = $(prefix)/share/applications +ICONPATH = $(prefix)/share/icons/hicolor +ICONDIR = $(ICONPATH)/scalable/apps +gtk_update_icon_cache = gtk-update-icon-cache -f -t $(ICONPATH) + +NAME = subsurface +ICONFILE = $(NAME).svg +DESKTOPFILE = $(NAME).desktop + +# find libdivecomputer; we don't trust pkg-config here given how young +# libdivecomputer still is - so we check /usr/local and /usr and then we +# give up. You can override by simply setting it here +# +libdc-local := $(wildcard /usr/local/include/libdivecomputer/*) +libdc-usr := $(wildcard /usr/include/libdivecomputer/*) + +ifneq ($(strip $(libdc-local)),) + LIBDIVECOMPUTERDIR = /usr/local + LIBDIVECOMPUTERINCLUDES = $(LIBDIVECOMPUTERDIR)/include/libdivecomputer + LIBDIVECOMPUTERARCHIVE = -L$(LIBDIVECOMPUTERDIR)/lib -ldivecomputer +else ifneq ($(strip $(libdc-usr)),) + LIBDIVECOMPUTERDIR = /usr + LIBDIVECOMPUTERINCLUDES = $(LIBDIVECOMPUTERDIR)/include/libdivecomputer + LIBDIVECOMPUTERARCHIVE = -ldivecomputer +else +$(error Cannot find libdivecomputer - please edit Makefile) +endif # Libusb-1.0 is only required if libdivecomputer was built with it. # And libdivecomputer is only built with it if libusb-1.0 is @@ -21,8 +52,17 @@ OBJS = main.o dive.o profile.o info.o equipment.o divelist.o \ parse-xml.o save-xml.o libdivecomputer.o print.o uemis.o \ gtk-gui.o -subsurface: $(OBJS) - $(CC) $(LDFLAGS) -o subsurface $(OBJS) $(LIBS) +$(NAME): $(OBJS) + $(CC) $(LDFLAGS) -o $(NAME) $(OBJS) $(LIBS) + +install: $(NAME) + $(INSTALL) -d -m 755 $(DESTDIR) + $(INSTALL) $(NAME) $(DESTDIR) + $(INSTALL) -d -m 755 $(DESKTOPDIR) + $(INSTALL) $(DESKTOPFILE) $(DESKTOPDIR) + $(INSTALL) -d -m 755 $(ICONDIR) + $(INSTALL) $(ICONFILE) $(ICONDIR) + $(gtk_update_icon_cache) parse-xml.o: parse-xml.c dive.h $(CC) $(CFLAGS) `pkg-config --cflags glib-2.0` -c `xml2-config --cflags` parse-xml.c @@ -60,7 +100,11 @@ libdivecomputer.o: libdivecomputer.c dive.h display.h display-gtk.h libdivecompu gtk-gui.o: gtk-gui.c dive.h display.h divelist.h display-gtk.h libdivecomputer.h $(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0 gconf-2.0` \ -I$(LIBDIVECOMPUTERINCLUDES) \ + -DVERSION_STRING='"v$(VERSION)"' \ -c gtk-gui.c uemis.o: uemis.c uemis.h $(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0 glib-2.0` -c uemis.c + +clean: + rm -f $(OBJS) *~ $(NAME)