11f12d4c1b
because of optimization bugs in the compiler on the Alpha.
14 lines
382 B
Text
14 lines
382 B
Text
--- Makefile.orig Tue May 16 16:31:04 2000
|
|
+++ Makefile Sat May 27 16:54:49 2000
|
|
@@ -1,8 +1,9 @@
|
|
|
|
SHELL=/bin/sh
|
|
-CC=gcc
|
|
+CC?=gcc
|
|
BIGFILES=-D_FILE_OFFSET_BITS=64
|
|
-CFLAGS=-Wall -Winline -O2 -fomit-frame-pointer -fno-strength-reduce $(BIGFILES)
|
|
+CFLAGS?=-O2
|
|
+CFLAGS+=-Wall -Winline -fomit-frame-pointer -fno-strength-reduce $(BIGFILES)
|
|
|
|
OBJS= blocksort.o \
|
|
huffman.o \
|