2005-08-25 14:14:13 +02:00
|
|
|
# Global rules for building a static import library -*-Makefile-*-
|
|
|
|
#
|
|
|
|
# Each individual makefile should define the following variables:
|
|
|
|
# MODULE : name of the main module being built
|
|
|
|
#
|
|
|
|
# plus all variables required by the global Make.rules.in
|
|
|
|
#
|
|
|
|
|
|
|
|
DLLFLAGS = @DLLFLAGS@
|
2006-04-17 11:17:18 +02:00
|
|
|
DEFS = -D__WINESRC__ $(EXTRADEFS)
|
2006-08-07 17:48:18 +02:00
|
|
|
INSTALLDIRS = $(DESTDIR)$(dlldir)
|
2005-08-25 14:14:13 +02:00
|
|
|
|
|
|
|
@MAKE_RULES@
|
|
|
|
|
2008-03-10 17:35:33 +01:00
|
|
|
all: $(MODULE:%=lib%.a)
|
2005-08-25 14:14:13 +02:00
|
|
|
|
|
|
|
# Rules for .a library
|
|
|
|
|
2008-03-10 17:35:33 +01:00
|
|
|
$(MODULE:%=lib%.a): $(OBJS) Makefile.in
|
2005-08-25 14:14:13 +02:00
|
|
|
$(RM) $@
|
2008-03-04 16:53:41 +01:00
|
|
|
$(AR) $(ARFLAGS) $@ $(OBJS)
|
2005-08-25 14:14:13 +02:00
|
|
|
$(RANLIB) $@
|
|
|
|
|
|
|
|
# Rules for installation
|
|
|
|
|
2008-03-10 17:35:33 +01:00
|
|
|
install install-dev:: $(MODULE:%=lib%.a) $(DESTDIR)$(dlldir)
|
|
|
|
$(INSTALL_DATA) $(MODULE:%=lib%.a) $(DESTDIR)$(dlldir)/$(MODULE:%=lib%.a)
|
2005-08-25 14:14:13 +02:00
|
|
|
|
2006-03-08 11:31:50 +01:00
|
|
|
install-lib::
|
|
|
|
|
2005-08-25 14:14:13 +02:00
|
|
|
uninstall::
|
2008-03-10 17:35:33 +01:00
|
|
|
$(RM) $(DESTDIR)$(dlldir)/$(MODULE:%=lib%.a)
|
2005-08-25 14:14:13 +02:00
|
|
|
|
|
|
|
# End of global library rules
|