diff options
author | root <root@krebs> | 2011-09-01 02:18:42 +0200 |
---|---|---|
committer | root <root@krebs> | 2011-09-01 02:18:42 +0200 |
commit | bb2a234ba756eb600fb6f562e67500d511d4ab39 (patch) | |
tree | c89b205e3ad2d20e3aa80ca525e0bbf1e01b4670 /oncology/dpfhack_display/reverse/Makefile | |
parent | 8a6fd84c70618f5a435d2859b513de6de68dc0d1 (diff) | |
parent | 4fb37da707279faf92cc8a054c646336f23dfdbe (diff) |
Merge branch 'master' of github.com:/krebscode/painload
Conflicts:
.gitmodules
oncology/dpfhack_display
Diffstat (limited to 'oncology/dpfhack_display/reverse/Makefile')
-rw-r--r-- | oncology/dpfhack_display/reverse/Makefile | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/oncology/dpfhack_display/reverse/Makefile b/oncology/dpfhack_display/reverse/Makefile deleted file mode 100644 index d0a28b68..00000000 --- a/oncology/dpfhack_display/reverse/Makefile +++ /dev/null @@ -1,76 +0,0 @@ -# Makefile for DPF firmware analysis - - -CFLAGS = -g - -ASFLAGS = -plosgff - -ifndef DUMP - DUMP = -d -endif - -VERSION = 0.01develop - -AS = asx8051 - -INFILES = $(wildcard code*.in) $(wildcard dump*.in) $(wildcard data*.in) - -ASMFILES = $(INFILES:%.in=%.asm) -BINFILES = $(INFILES:%.in=%.bin) - -all: $(ASMFILES) - -show: - echo $(ASMFILES) - -all.asm: $(ASMFILES) - @echo concatenating all ASM files into $@ - @cat $(ASMFILES) > $@ - -%.rel : %.asm - $(AS) $(ASFLAGS) $< - -# Fixup format: -%.asm: %.d52 - @echo Generating $@ - @sed 's/\.equ/=/g;s/^\s*end/; END/g' $< > $@ - -test: main.o - $(CC) -o $@ $< - -clean: cleanimages - rm -f test *.ctl *.asm dump*.bin code*.bin *.d52 *.lst *.rel *.sym - -common.in: - ln -s ../common.in . - -dump%.ctl: dump%.in common.in - @cat $< common.in >$@ - -code_%.ctl: code_%.in common.in - @cat $< common.in >$@ - -data_%.ctl: data_%.in - @cp $< $@ - -%.d52: %.bin %.ctl - @d52 -p -b $(DUMP) -n $< # >/dev/null - -cleanimages: - rm -fr images/* - -RAWFILES = $(wildcard *.raw) - -IMAGES = $(RAWFILES:%.raw=images/%.png) - -images/%.png: %.raw - convert -size 128x128 -depth 1 gray:$< $@ - -images: $(IMAGES) - -dump: - PWD=`pwd`; BASE=`basename $$PWD`; \ - echo $$BASE; \ - python ../dump.py $$BASE full_image.bin - -.PHONY: dump |