X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=1_isacmp%2FMakefile;h=62d14ef065283bd91a0678f049f4c8ce37aa0155;hb=2c106febdc5883442ffc4341933e1bd23829df4a;hp=64419cb203688c41b4b692cabf38923f3fb194be;hpb=dea82aa381c0e119cf2b52e9e352c4b295d86352;p=calu.git diff --git a/1_isacmp/Makefile b/1_isacmp/Makefile index 64419cb..62d14ef 100644 --- a/1_isacmp/Makefile +++ b/1_isacmp/Makefile @@ -1,6 +1,7 @@ SHELL := bash -FILES = isa_cmp.tex 8051.tex arm.tex avr.tex common.sty Makefile ppc.tex spear2.tex +FILES = isa_cmp.tex 8051.tex 8051.s arm.tex avr.tex common.sty +FILES += Makefile ppc.tex ppc.s spear2.tex sum.c cmp.tex TARGET = isa_cmp.pdf PDFGEN = pdflatex --jobname=$(basename $@) $< @@ -16,4 +17,9 @@ $(TARGET): $(FILES) .PHONY: clean html clean: - rm -fr *.aux *.log *.dvi *.pdf *.toc *.out + rm -fr *.aux *.log *.dvi *.pdf *.toc *.out *.o testpcc + +CC := gcc +#ppc environment only... +testppc: ppc.o testppc.o + $(CC) -o $@ $^