# Makefile for reconfig.asm processing by # Phillip Musumeci phillip@rmit.edu.au all: 8 12 16 help 8: reconfig.src @cpp -P -C -undef -DCRYSTAL8 reconfig.src > reconfig.asm as11 reconfig.asm -c -l > reconfig.l8 hex-tool -l reconfig.s19 -d reconfig.b8 0000 0400 -q @/bin/rm reconfig.s19 reconfig.asm @echo "Produced listing and binary file for 8MHz system" @ls -l reconfig.l8 reconfig.b8 12: reconfig.src @cpp -P -C -undef -DCRYSTAL12 reconfig.src > reconfig.asm as11 reconfig.asm -c -l > reconfig.l12 hex-tool -l reconfig.s19 -d reconfig.b12 0000 0400 -q @/bin/rm reconfig.s19 reconfig.asm @echo "Produced listing and binary file for 12MHz system" @ls -l reconfig.l12 reconfig.b12 16: reconfig.src @cpp -P -C -undef -DCRYSTAL16 reconfig.src > reconfig.asm as11 reconfig.asm -c -l > reconfig.l16 hex-tool -l reconfig.s19 -d reconfig.b16 0000 0400 -q @/bin/rm reconfig.s19 reconfig.asm @echo "Produced listing and binary file for 16MHz system" @ls -l reconfig.l16 reconfig.b16