Makefile
changeset 2 5bdd42401211
child 3 2fcd20b32b2e
--- /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 $@