WiLiKiソース解読:Makefile

WiLiKiソース解読:Makefile

 CONFIG_GENERATED = config.log config.status autom4te*.cache
 .PHONY : all clean test install distclean realclean
 
 all:
        (cd src; $(MAKE))
 
 clean:
        rm -f core *~ 
        (cd src; $(MAKE) clean)
        (cd test; $(MAKE) clean)
 
 test:
        (cd test; $(MAKE) test)
 
 install: all
        (cd src; $(MAKE) install)
 
 distclean: clean
        (cd src; $(MAKE) distclean)
        (cd test; $(MAKE) distclean)
        rm -rf $(CONFIG_GENERATED)
 
 realclean: clean
        (cd src; $(MAKE) realclean)
        (cd test; $(MAKE) realclean)
        rm -rf $(CONFIG_GENERATED) configure

Last modified : 2003/03/24 07:10:10 UTC