# # Makefile - Makefile to build pic16 int upport library # # This file is part of the GNU PIC Library. # # January, 2004 # The GNU PIC Library is maintained by, # Vangelis Rokas # # $Id$ # # LIB = sdccint.lib SRCS = divsint \ divuint \ modsint \ moduint \ mulint include ../Makefile.rules all: build-library build-library: $(LIB) $(LIB): $(OFILES) @echo Creating $(LIB) ... @for object in $(OFILES) ; do \ if [ ! -e $(LIB) ]; then \ $(AR) -c $(LIB) $$object ; \ else \ $(AR) -r $(LIB) $$object ; \ fi; \ echo adding $$object ; \ done ;