January 18, 2011 Making Sense of 'make' Back

Makefile Variables (cont'd)

        dist: all
                tar --create --gzip --verbose \
                --file $(ARCHIVE) $(SOURCE) Makefile
        clean:
                rm -f $(RESULT)
        distclean: clean
                rm -f $(ARCHIVE)


Home Last TOC Copyright © 2011 James E Keenan Back Next