~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Jonathan Lange
  • Date: 2010-03-21 16:35:28 UTC
  • mto: This revision was merged to the branch mainline in revision 10558.
  • Revision ID: jml@canonical.com-20100321163528-fr1zyyo0tytw39eb
Add clean step for generated dependency files, hide the junk output,
tweak lp-sfood-packages for recent tree changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
347
347
        # /var/tmp/launchpad_mailqueue is created read-only on ec2test
348
348
        # instances.
349
349
        if [ -w /var/tmp/launchpad_mailqueue ]; then $(RM) -rf /var/tmp/launchpad_mailqueue; fi
 
350
        $(RM) -f lp.sfood lp-clustered.sfood lp-clustered.dot lp-clustered.svg
350
351
 
351
352
 
352
353
realclean: clean
409
410
lp.sfood:
410
411
        # Generate import dependency graph
411
412
        sfood -i -u -I lib/sqlobject -I lib/schoolbell -I lib/devscripts -I lib/contrib \
412
 
        -I lib/canonical/not-used lib/canonical lib/lp | grep -v contrib/ \
 
413
        -I lib/canonical/not-used lib/canonical lib/lp 2>/dev/null | grep -v contrib/ \
413
414
        | grep -v sqlobject | grep -v BeautifulSoup | grep -v psycopg \
414
 
        | grep -v schoolbell 2>/dev/null > lp.sfood.tmp
 
415
        | grep -v schoolbell > lp.sfood.tmp
415
416
        mv lp.sfood.tmp lp.sfood
416
417
 
417
418