--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile Mon Sep 03 12:22:41 2007 +0000
@@ -0,0 +1,15 @@
+BIN = mimecut
+CLEANFILES = $(BIN)
+
+.PHONY: all clean install
+
+all: $(BIN)
+
+clean:
+ -rm -f $(CLEANFILES)
+
+%: %.pl
+ # $<
+ @perl -c - <$<
+ @cp -f $< $@
+ @chmod a-w,+x $@