# Erfordert GPASM (gputils) # Starte `make` um HEX-Datei zu generieren! # Project name P = igr D = p16f1454 all: $P.hex # Assemble non-relocateable assembly source file, therefore emit HEX file %.hex: %.a15 *.i15 Makefile gpasm -I c:/programs/pic/SDCC/header -p $D -o $@ $< # Disassemble dis: $P.dis %.dis: %.hex gpdasm -p $D -nt $< >$@ # Clean clean: -rm -f *.hex *.cod *.lst *.dis .PHONY: clean dis
| Detected encoding: UTF-8 | 0 |