Blame | Last modification | View Log | RSS feed
#
# Dependency rules used to make a sub-library
#
.PHONY: all install clean cleanall depend
#
install:: all
make -C .. copylibrary
all:: $(OBJS)
$(AR) rs ../lib$(LIBRARY).a $(OBJS)
clean::
$(RM) *.o
$(RM) *.err
cleanall:: clean
$(RM) deps
$(RM) *.bak
$(RM) *.~
$(RM) *.?~
$(RM) *.??~
depend::
$(CC) $(C_OPT) -M $(OBJS:.o=.c) > deps
deps:
$(CC) $(C_OPT) -M $(OBJS:.o=.c) > deps
ifneq ($(MAKECMDGOALS),clean)
ifneq ($(MAKECMDGOALS),cleanall)
include deps
endif
endif
#../lib$(LIBRARY).a: $(OBJS)
# $(AR) rs ../lib$(LIBRARY).a $(OBJS)