# copy stuff from the cvs to the web # author : Andreas Abel # created: 2008-02-13 rootdir = ../../cvs simdir = $(rootdir)/MJC/AHaskell muhwidir= $(rootdir)/Tools/IntmIntp all : muHwI.tgz sim.tar.gz runtime.c examples # Lec14/runtime.c runtime.c : $(rootdir)/runtime.c cp -p $< $@ muHwI.tgz : $(muhwidir)/muHwI.tgz make -C $(muhwidir) $@ cp -p $< $@ sim.tar.gz : $(simdir)/sim.tar.gz make -C $(simdir) $@ cp -p $< $@ examples : cp -p $(rootdir)/MiniJava/*.java MiniJava/ cp -p $(rootdir)/MiniJava/*.blk.intm MiniJava/ cp -p $(rootdir)/MiniJava/*.raw.s MiniJava/ cp -p $(rootdir)/MiniJava/*.s MiniJava/ -rm MiniJava/GameOfLife.blk.intm -rm MiniJava/GameOfLife.raw.s -rm MiniJava/GameOfLife.s # old stuff Lec14/runtime.c : ../cvs/runtime.c cp -p $< $@ # EOF