mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2025-01-10 18:43:26 +08:00
47204ff983
see errors/warnings.
19 lines
317 B
Makefile
19 lines
317 B
Makefile
all:: checker $(LIBRARY)_chk.a
|
|
|
|
subdirs:: checker
|
|
|
|
checker:
|
|
@echo " MKDIR $@"
|
|
@mkdir checker
|
|
|
|
clean::
|
|
$(RM) -rf checker
|
|
|
|
$(LIBRARY)_chk.a: $(OBJS)
|
|
@echo " GEN_CHECKER_LIB $@"
|
|
@(test -r $@ && $(RM) -f $@.bak && $(MV) $@ $@.bak)
|
|
(cd checker; $(ARGEN) $@ $(OBJS))
|
|
-@$(RANLIB) $@
|
|
@$(RM) -f ../$@
|
|
@$(LN) $@ ../$@
|