mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-04 04:50:30 +02:00
Makefiel regenerated after commit 35943: Add testppudump rule in tests/tstunits directory
git-svn-id: trunk@35944 -
This commit is contained in:
parent
ca23830b56
commit
c2ec612f1f
@ -1977,6 +1977,26 @@ ctest:
|
|||||||
@exit 1
|
@exit 1
|
||||||
endif
|
endif
|
||||||
extra : erroru$(PPUEXT) ptest$(PPUEXT) popuperr$(PPUEXT)
|
extra : erroru$(PPUEXT) ptest$(PPUEXT) popuperr$(PPUEXT)
|
||||||
|
PPULIST:=$(wildcard */*.ppu) $(wildcard units/*/*.ppu)
|
||||||
|
PPULOGLIST:=$(subst .ppu,.log-ppu,$(PPULIST))
|
||||||
|
RMPPULOGLIST:=$(subst .ppu,.rm-log-ppu,$(PPULIST))
|
||||||
|
.PHONY : ppulogs cleanppulogs testppudump $(RMPPULOGLIST)
|
||||||
|
ppulogs : $(PPULOGLIST)
|
||||||
|
vpath %.ppu $(ALLPPUDIRS)
|
||||||
|
vpath %.log-ppu $(ALLPPUDIRS)
|
||||||
|
vpath %.rm-log-ppu $(ALLPPUDIRS)
|
||||||
|
%.log-ppu : %.ppu ../../compiler/utils/ppudump$(EXEEXT)
|
||||||
|
..$(PATHSEP)..$(PATHSEP)compiler$(PATHSEP)utils$(PATHSEP)ppudump -VA -M $< > $@
|
||||||
|
%.rm-log-ppu : %.ppu ../../compiler/utils/ppudump$(EXEEXT)
|
||||||
|
-$(RMPROG) $<
|
||||||
|
../../compiler/utils/ppudump$(EXEEXT):
|
||||||
|
$(MAKE) -C $(COMPILERDIR)/utils ppudump$(EXEEXT)
|
||||||
|
ppuinfo :
|
||||||
|
echo PPU list is "$(PPULIST)"
|
||||||
|
echo PPULOG list is "$(PPULOGLIST)"
|
||||||
|
cleanppulogs : $(RMPPULOGLIST)
|
||||||
|
testppudump :
|
||||||
|
$(MAKE) cleanppulogs ppulogs
|
||||||
ifdef QUICKTEST
|
ifdef QUICKTEST
|
||||||
all : rtl fpcunit extra
|
all : rtl fpcunit extra
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user