Changeset fdc042d


Ignore:
Timestamp:
Apr 4, 2023, 1:25:27 PM (13 months ago)
Author:
Mike Brooks <mlbrooks@…>
Branches:
ADT, ast-experimental, master
Children:
ff71057
Parents:
b0be909f
Message:

Fix Makefile noise on LL perf rebuild.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/mike_brooks_MMath/benchmarks/list/Makefile

    rb0be909f rfdc042d  
    103103perfexp--%     driver--%.o     : COMPILER=NO-COMPILER-FOR-$(FX_COARSE)
    104104
     105# Without this %.d rule, ordinary make runs have noise about the recipe for driver--%.o being ill-formed when called on a *.d.
     106# https://stackoverflow.com/questions/3714041/why-does-this-makefile-execute-a-target-on-make-clean
     107# Whatever you -include gets called as a target first.
     108# One such example is driver--upp-upp--stack-insfirst-allhead.d
     109# Without this %.d rule, `make make driver--upp-upp--stack-insfirst-allhead.d` leads to the rule for driver--%.o firing.
     110# Though my dumb human eyes don't see the pattern as matching.
     111%.d:
     112        @touch $@
     113
    105114perfexp--% : driver--%.o observation.o
    106115        $(COMPILER) $(EXTRA_COMP_FLAGS) $^ -o $@
Note: See TracChangeset for help on using the changeset viewer.