~ubuntu-branches/ubuntu/trusty/enigmail/trusty-security

« back to all changes in this revision

Viewing changes to build/pymake/tests/vpath2.mk

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2011-11-16 21:30:26 UTC
  • mfrom: (0.12.7)
  • Revision ID: package-import@ubuntu.com-20111116213026-7i0cpxql4kyjcdg4
Tags: 2:1.3.3-0ubuntu1
* New upstream release v1.3.3
* Add patch to define constants in nsIEnigmail.idl as unsigned long, so
  that the new IDL parser doesn't fall over
  - add debian/patches/new_idl_parser_compat.patch
  - update debian/patches/series

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
VPATH = foo bar
 
2
 
 
3
$(shell \
 
4
mkdir bar; touch bar/test.source; \
 
5
sleep 2; \
 
6
mkdir foo; touch foo/tfile1; \
 
7
touch bar/tfile2 bar/tfile3 bar/test.objtest; \
 
8
)
 
9
 
 
10
all: tfile1 tfile2 tfile3 test.objtest test.source
 
11
        test "$^" = "foo/tfile1 bar/tfile2 bar/tfile3 bar/test.objtest bar/test.source"
 
12
        @echo TEST-PASS
 
13
 
 
14
tfile3: test.objtest
 
15
 
 
16
%.objtest: %.source
 
17
        test "$<" = bar/test.source
 
18
        test "$@" = test.objtest