You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
462 B
18 lines
462 B
# (c) Bernd Porr |
|
# GNU public license |
|
# no warranty |
|
# |
|
|
|
all: usbduxfast_firmware.bin usbdux_firmware.bin usbduxsigma_firmware.bin |
|
|
|
usbduxfast_firmware.bin: fx2-include.asm usbduxfast_firmware.asm |
|
as31 -Fbin usbduxfast_firmware.asm |
|
|
|
usbdux_firmware.bin: fx2-include.asm usbdux_firmware.asm |
|
as31 -Fbin usbdux_firmware.asm |
|
|
|
usbduxsigma_firmware.bin: fx2-include.asm usbduxsigma_firmware.asm |
|
as31 -Fbin usbduxsigma_firmware.asm |
|
|
|
clean: |
|
rm -f *.bin *~ *.lst *.bin
|
|
|