e2fsprogs/lib/Makefile.library

22 lines
335 B
Makefile
Raw Normal View History

1997-04-26 17:58:21 +04:00
all:: subdirs $(LIBRARY).a
install-shlibs::
uninstall-shlibs::
subdirs:: Makefile
@$(MAKE) -s real-subdirs
@touch subdirs
clean::
@$(RM) -f subdirs
1997-04-26 17:58:21 +04:00
$(LIBRARY).a: $(OBJS)
@echo " GEN_LIB $@"
@(if test -r $@; then $(RM) -f $@.bak && $(MV) $@ $@.bak; fi)
@$(ARGEN) $@ $(OBJS)
-@$(RANLIB) $@
@$(RM) -f ../$@
@$(LN) $@ ../$@
1997-04-26 17:58:21 +04:00