1all:: $(LIBRARY)_chk.a 2 3real-subdirs:: Makefile 4 @echo " MKDIR checker" 5 @mkdir -p checker 6 7clean:: 8 $(RM) -rf checker 9 10$(LIBRARY)_chk.a: $(OBJS) 11 @echo " GEN_CHECKER_LIB $@" 12 @(test -r $@ && $(RM) -f $@.bak && $(MV) $@ $@.bak) 13 (cd checker; $(ARGEN) $@ $(OBJS)) 14 -@$(RANLIB) $@ 15 @$(RM) -f ../$@ 16 @$(LN) $@ ../$@ 17