# # Makifile to pack/unpack model files # Andrei Sherstyuk # SINGLE = \ 1702D al babem balls champagne \ clouds coral cowrie crab dalek \ diamond dino dodge dragon ent1701D \ escher espresso head horse jurassic \ k7 kajiya lamp lux mb \ ncc1701b ncc1701d nefertit ocean parade \ pins pool pots power robotbal \ seaweed shell-1 shell-2 shell-3 spirale \ station teapot tommygun tree tyranid \ uw-1 uw-2 venus violcase vw \ warbird DOUBLE = \ amiga calypso crypt greenman hedgehog \ intel jaws lapin plants rose \ shell softdrnk softrats songoku ss1 \ ss2 temple watch yoda \ pack: pack_double pack_single unpack: unpack_double unpack_single pack_double: for i in $(DOUBLE); do \ (zip $$i.rrr -m $$i.rat;) \ done pack_single: for i in $(SINGLE); do \ (zip $$i.iii -m $$i.ice;) \ done unpack_double: for i in $(DOUBLE); do \ (unzip $$i.rrr;) \ done unpack_single: for i in $(SINGLE); do \ (unzip $$i.iii;) \ done