]> cloudbase.mooo.com Git - avrcpm.git/commitdiff
* cpm/Makefile
authorLeo <erbl259-lmu@yahoo.de>
Wed, 20 Apr 2011 21:30:47 +0000 (21:30 +0000)
committerLeo <erbl259-lmu@yahoo.de>
Wed, 20 Apr 2011 21:30:47 +0000 (21:30 +0000)
git-svn-id: svn://cu.loc/avr-cpm/avrcpm/trunk@166 57430480-672e-4586-8877-bcf8adbbf3b7

cpm/Makefile

index 054dfa41718d9a58336b1c07833d688739fcc8de..270ed720e33acd039f0c56e396520aab05899b3a 100644 (file)
@@ -12,9 +12,9 @@ diskimage: CPM.BIN cpmdsk/*
        cd cpmdsk; for x in *; do cpmcp -f avrcpm ../diskimage $$x 0:$$x; done; cd ..
 
 CPM.BIN: IPL.BIN BIOS.BIN CPM.SYS
-       dd conv=sync bs=128  count=1 if=IPL.BIN > tmpCPM.BIN
-       dd conv=sync bs=128 count=44 if=CPM.SYS >> tmpCPM.BIN
-       dd conv=sync bs=128  count=7 if=BIOS.BIN >> tmpCPM.BIN
+       dd conv=sync bs=128  count=1 if=IPL.BIN > tmpCPM.BIN   &&\
+       dd conv=sync bs=128 count=44 if=CPM.SYS >> tmpCPM.BIN  &&\
+       dd conv=sync bs=128  count=7 if=BIOS.BIN >> tmpCPM.BIN &&\
        mv tmpCPM.BIN CPM.BIN