X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=Makefile;h=8f12d0a0af4dfae20757ddebdd76032699c0099f;hb=5b2f1c7914f5632362813a304659a3971e595d50;hp=2f24eb7de8f589119c3c97948a9bac0da6b5d82f;hpb=3a6c1f767d527c2247eefb264f68adf3f3770608;p=ext%2Fsubsurface.git diff --git a/Makefile b/Makefile index 2f24eb7..8f12d0a 100644 --- a/Makefile +++ b/Makefile @@ -5,13 +5,15 @@ LIBDIVECOMPUTERDIR = /usr/local LIBDIVECOMPUTERINCLUDES = $(LIBDIVECOMPUTERDIR)/include/libdivecomputer LIBDIVECOMPUTERARCHIVE = $(LIBDIVECOMPUTERDIR)/lib/libdivecomputer.a +# Add libusb in case of libdivecomputer compiled with usb support. +LIBS = `pkg-config --libs gtk+-2.0 glib-2.0 gconf-2.0` + 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 subsurface: $(OBJS) $(CC) $(LDFLAGS) -o subsurface $(OBJS) \ - `xml2-config --libs` \ - `pkg-config --libs gtk+-2.0 glib-2.0 gconf-2.0` \ + `xml2-config --libs` $(LIBS) \ $(LIBDIVECOMPUTERARCHIVE) -lpthread parse-xml.o: parse-xml.c dive.h