94 lines
2.7 KiB
Plaintext
94 lines
2.7 KiB
Plaintext
XCOMM $Header: /home/x_cvs/mit/config/sv4Lib.rules,v 1.6 1992/08/03 04:16:35 dawes Exp $
|
|
XCOMM $XConsortium: sv4Lib.rules,v 1.8 91/07/19 15:38:53 rws Exp $
|
|
|
|
/*
|
|
* SVR4 shared library rules
|
|
*/
|
|
|
|
#ifndef HasSharedLibraries
|
|
#define HasSharedLibraries YES
|
|
#endif
|
|
#ifndef SharedDataSeparation
|
|
#define SharedDataSeparation NO
|
|
#endif
|
|
#ifndef SharedCodeDef
|
|
#define SharedCodeDef /**/
|
|
#endif
|
|
#ifndef SharedLibraryDef
|
|
#define SharedLibraryDef /**/
|
|
#endif
|
|
#ifndef ShLibIncludeFile
|
|
#define ShLibIncludeFile <sv4Lib.tmpl>
|
|
#endif
|
|
#ifndef SharedLibraryLoadFlags
|
|
#define SharedLibraryLoadFlags -G -z text
|
|
#endif
|
|
#ifndef PositionIndependentCFlags
|
|
#if HasGcc2
|
|
#define PositionIndependentCFlags -fPIC
|
|
#else
|
|
#define PositionIndependentCFlags -K PIC
|
|
#endif
|
|
#endif
|
|
|
|
|
|
/*
|
|
* InstallSharedLibrary - generate rules to install the shared library.
|
|
*/
|
|
#ifndef InstallSharedLibrary
|
|
#if StripInstalledPrograms
|
|
#define InstallSharedLibrary(libname,rev,dest) @@\
|
|
install:: Concat(lib,libname.so.rev) @@\
|
|
MakeDir($(DESTDIR)dest) @@\
|
|
$(INSTALL) -c $(INSTLIBFLAGS) Concat(lib,libname.so.rev) $(DESTDIR)dest @@\
|
|
mcs -d Concat($(DESTDIR)dest/lib,libname.so.rev) @@\
|
|
$(RM) Concat($(DESTDIR)dest/lib,libname.so) @@\
|
|
$(LN) Concat(lib,libname.so.rev) Concat($(DESTDIR)dest/lib,libname.so)
|
|
#else
|
|
#define InstallSharedLibrary(libname,rev,dest) @@\
|
|
install:: Concat(lib,libname.so.rev) @@\
|
|
MakeDir($(DESTDIR)dest) @@\
|
|
$(INSTALL) -c $(INSTLIBFLAGS) Concat(lib,libname.so.rev) $(DESTDIR)dest @@\
|
|
$(RM) Concat($(DESTDIR)dest/lib,libname.so) @@\
|
|
$(LN) Concat(lib,libname.so.rev) Concat($(DESTDIR)dest/lib,libname.so)
|
|
#endif
|
|
|
|
#endif /* InstallSharedLibrary */
|
|
|
|
/*
|
|
* InstallSharedLibraryData - generate rules to install the shared library data
|
|
*/
|
|
#ifndef InstallSharedLibraryData
|
|
#define InstallSharedLibraryData(libname,rev,dest)
|
|
#endif /* InstallSharedLibraryData */
|
|
|
|
|
|
/*
|
|
* SharedLibraryTarget - generate rules to create a shared library;
|
|
* build it into a different name so that we do not hose people by having
|
|
* the library gone for long periods.
|
|
*/
|
|
#ifndef SharedLibraryTarget
|
|
#define SharedLibraryTarget(libname,rev,solist,down,up) @@\
|
|
AllTarget(Concat(lib,libname.so.rev)) @@\
|
|
@@\
|
|
Concat(lib,libname.so.rev): solist @@\
|
|
$(RM) $@~ @@\
|
|
(cd down; $(LD) -o up/$@~ $(SHLIBLDFLAGS) -h $@ solist) @@\
|
|
$(RM) $@ @@\
|
|
$(MV) $@~ $@ @@\
|
|
$(RM) Concat(lib,libname.so) @@\
|
|
$(LN) $@ Concat(lib,libname.so) @@\
|
|
@@\
|
|
clean:: @@\
|
|
$(RM) Concat(lib,libname.so.rev) Concat(lib,libname.so)
|
|
|
|
#endif /* SharedLibraryTarget */
|
|
|
|
/*
|
|
* SharedLibraryDataTarget - generate rules to create shlib data file;
|
|
*/
|
|
#ifndef SharedLibraryDataTarget
|
|
#define SharedLibraryDataTarget(libname,rev,salist)
|
|
#endif /* SharedLibraryTarget */
|