summaryrefslogtreecommitdiff
blob: 2c9bad5ccfb110905adea7810a6f353a89c1300d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- Makefile.in.orig	2007-07-18 02:15:44.000000000 +0800
+++ Makefile.in	2007-07-18 02:47:15.000000000 +0800
@@ -1514,6 +1514,9 @@
 opt:  $(RESFILE) $(TMPSOURCES) $(TARGETS)
 
 byte:  $(TMPSOURCES) $(foreach target, $(TARGETS), $(target).byte)
+	for i in $(foreach target, $(TARGETS), $(target).byte); do \
+		cp $$i $${i/.byte/}; \
+	done
 
 static: $(foreach target, $(TARGETS), $(target).static)
 
@@ -1662,6 +1665,9 @@
 	cd $(LOCAL)/ocamlopt-$(REQUIRED_OCAML); $(MAKE)
 
 utils.byte: mld_hash.byte make_torrent.byte copysources.byte get_range.byte subconv.byte
+	for i in $^ ; do\
+		cp $$i $${i/.byte/}; \
+	done 
 utils.opt: svg_converter mld_hash make_torrent copysources get_range subconv
 utils.opt.static: svg_converter mld_hash.static make_torrent.static copysources.static get_range.static subconv.static
 utils.byte.static: mld_hash.byte.static make_torrent.byte.static copysources.byte.static get_range.byte.static subconv.byte.static