blob: 05bc2a4a09b8636938e02ff9d15eca01e65aa3ca (
plain)
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
|
SRCS += $(NAME).c
OBJS += $(NAME).o
SHLIB_LINK := $(BE_DLLLIBS)
SO_MAJOR_VERSION := 0
SO_MINOR_VERSION := 0
rpath =
all: all-shared-lib
include $(top_srcdir)/src/Makefile.shlib
install: all installdirs
ifeq ($(enable_shared), yes)
$(INSTALL_SHLIB) $(shlib) '$(DESTDIR)$(pkglibdir)/$(NAME)$(DLSUFFIX)'
endif
installdirs:
$(mkinstalldirs) '$(DESTDIR)$(pkglibdir)'
uninstall:
rm -f '$(DESTDIR)$(pkglibdir)/$(NAME)$(DLSUFFIX)'
clean distclean maintainer-clean: clean-lib
rm -f $(OBJS)
|