diff options
| author | pcg <pcg> | 2004-03-08 14:33:40 +0000 | 
|---|---|---|
| committer | pcg <pcg> | 2004-03-08 14:33:40 +0000 | 
| commit | 8eb972be325637ecddfc54a4cbf2e5dea67ea603 (patch) | |
| tree | 9f0dbdf190d9463ff691aa2d1777b342e7b91c8f | |
| parent | e1a43379a4a81bc1e2f341a61dd45c08bb375c90 (diff) | |
*** empty log message ***
| -rw-r--r-- | Changes | 3 | ||||
| -rw-r--r-- | Makefile.in | 8 | 
2 files changed, 8 insertions, 3 deletions
| @@ -1,3 +1,6 @@ +1.3 <unreleased> +	- added VPATH support as suggested by Björn Eriksson. +  1.2  Mon Dec 29 13:47:28 CET 2003  	- avoid spurious memory accesses after the to-be-compressed            memory region. originally reported by Michal Zalewski. diff --git a/Makefile.in b/Makefile.in index 4aca98c..12d736c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,4 +1,4 @@ -VERSION = 1.2 +VERSION = 1.3  prefix = @prefix@  exec_prefix = @exec_prefix@ @@ -6,8 +6,10 @@ libdir = @libdir@  bindir = @bindir@  includedir = @includedir@ +VPATH = @srcdir@ +  CC = @CC@ -CPPFLAGS = @CPPFLAGS@ +CPPFLAGS = -I. @CPPFLAGS@  CFLAGS = @CFLAGS@  LDFLAGS = @LDFLAGS@  RANLIB = @RANLIB@ @@ -59,5 +61,5 @@ Makefile: Makefile.in  	./config.status  bench: Makefile liblzf.a bench.c -	$(CC) $(CFLAGS) -g -o bench bench.c -L. -llzf +	$(CC) $(CPPFLAGS) $(CFLAGS) -g -o bench bench.c -L. -llzf | 
