Whamcloud - gitweb
Many files:
[tools/e2fsprogs.git] / lib / Makefile.bsd-lib
1 #
2 # This is a Makefile stub which handles the creation of Linux BSD shared
3 # libraries.
4 #
5 # In order to use this stub, the following makefile variables must be defined.
6
7 # BSDLIB_VERSION = 1.0
8 # BSDLIB_IMAGE = libce
9 # BSDLIB_MYDIR = et
10 # BSDLIB_INSTALL_DIR = $(SHLIBDIR)
11 #
12
13 all:: pic image
14
15 subdirs:: pic
16
17 pic:
18         mkdir pic
19
20 BSD_LIB = $(BSDLIB_IMAGE).so.$(BSDLIB_VERSION)
21
22 image:          $(BSD_LIB)
23
24 $(BSD_LIB): $(OBJS)
25         (cd pic; ld -Bshareable -o $(BSD_LIB) $(OBJS))
26         $(MV) pic/$(BSD_LIB) .
27         $(RM) -f ../$(BSD_LIB)
28         $(LN) $(BSD_LIB) ../$(BSD_LIB)
29
30 install-shlibs install:: $(BSD_LIB)
31         $(INSTALL_PROGRAM) $(BSD_LIB) \
32                 $(DESTDIR)$(BSDLIB_INSTALL_DIR)/$(BSD_LIB)
33         -ldconfig
34
35 uninstall-shlibs uninstall::
36         $(RM) -f $(DESTDIR)$(BSDLIB_INSTALL_DIR)/$(BSD_LIB)
37
38 clean::
39         $(RM) -rf pic
40         $(RM) -f $(BSD_LIB)
41         $(RM) -f ../$(BSD_LIB)