#
DIST = intercal

# Due to the fact that zip3 will not allow full file names from directories
# we need to perform a dirty copy to another device to eliminate the
# directory structure...

all:  clean
        rm -f $(TMP)
        cp * $(TMP)
        cp doc_* $(TMP)
        cp src_* $(TMP)
        cp pit_* $(TMP)
        cp pit_lib_* $(TMP)
        cp pit_tests_* $(TMP)
        zip3 $(DIST) $(TMP)*
        rm -f $(TMP)*

clean:
        rm -f src_ick src_*_o src_libick_a src_slblist src_tlist src_wlist \
              src_slblist_tmp intercal_zip
