Back to home page

LXR

 
 

    


Warning, /make/lib.cfg is written in an unsupported language. File is not indexed.

0001 # make/lib.cfg
0002 #
0003 #   Make(1) configuration file include'd by all "library" Makefile
0004 #   Assumes $(LIB) is set to $(ARCH)/libfoo.a
0005 #
0006 
0007 include $(PROJECT_ROOT)/make/leaf.cfg
0008 
0009 define make-library
0010 $(RM) $@
0011 $(AR) $(ARFLAGS) $@ $(OBJS)
0012 $(RANLIB) $@
0013 endef
0014 
0015 .PRECIOUS: $(LIB)