diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2009-06-02 10:56:59 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2009-06-02 10:56:59 +0100 |
commit | 450437c2d39b73e34135312215b2d7b6b4a39532 (patch) | |
tree | 1dfb370bce431c537c5b73c0f4e1d0d5fb77675a /Makefile |
Create a simple repository to store compressed cairo traces.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c632856 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +NULL := +TRACES := \ + firefox.trace \ + gnome-terminal.trace \ + $(NULL) + +all: $(TRACES) + +%.trace: %.lzma + lzma -cd $^ > $@ |