1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
top_srcdir = @top_srcdir@
top_builddir = @top_srcdir@
# Install variables
prefix=@prefix@
#Pilot flags (include dir), and Libraries
PILOT_FLAGS=@PILOT_FLAGS@
PILOT_LIBS=@PILOT_LIBS@
#opensll or des
CRYPTO_LIBS=-lcrypto
#set CC to your compiler
CC = @CC@
INSTALL = @INSTALL@
LIBTOOL = @LIBTOOL@
# CC options
CCDEFINES = @DEFS@
CFLAGS = @cflags@
OPTIONS = @ccoptions@ $(CFLAGS)
# GTK+ flags
GTKFLAGS = @GTK_CFLAGS@
# GTK+ libs
GTKLIBS = @GTK_LIBS@
# Targets
all: libplugin.h keyring.o libkeyring.la
libkeyring.la: keyring.o
$(LIBTOOL) --mode=link \
$(CC) $(OPTIONS) -o libkeyring.la \
keyring.lo \
-rpath $(prefix)/lib/jpilot/plugins \
-version-info 1:1 \
-avoid-version \
$(CRYPTO_LIBS)
keyring.o: keyring.c libplugin.h
$(LIBTOOL) --mode=compile \
$(CC) $(OPTIONS) $(GTKFLAGS) $(PILOT_FLAGS) -c keyring.c
libplugin.h: ../libplugin.h
rm -f libplugin.h; ln -s ../libplugin.h libplugin.h; \
clean:
rm -f *.o *~ config.cache .libs/* *.so *.so.? *.so.?.? *.lo *.la
rm -rf .libs/
distclean: clean
rm -f config.status config.log *.so Makefile
#
# This is a global install. You can also install per user in
# ~/.jpilot/plugins
#
install:
$(INSTALL) -d -m 755 $(prefix)/lib/jpilot; \
$(INSTALL) -d -m 755 $(prefix)/lib/jpilot/plugins; \
$(LIBTOOL) --mode=install $(INSTALL) \
libkeyring.la $(prefix)/lib/jpilot/plugins
local_install:
$(INSTALL) -d -m 755 $(HOME)/.jpilot; \
$(INSTALL) -d -m 755 $(HOME)/.jpilot/plugins; \
$(LIBTOOL) --mode=install ./install-sh \
libkeyring.la $(HOME)/.jpilot/plugins
uninstall:
rm -f $(prefix)/lib/jpilot/plugins/libkeyring.so*
|