You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixz/Makefile

21 lines
387 B
Makefile

15 years ago
LDFLAGS = -L/Library/Fink/sl64/lib -llzma -Wall
CFLAGS = -I/Library/Fink/sl64/include -g -O0 -std=c99 -Wall
15 years ago
PIXZ_OBJS: pixz.o encode.o block.o
pixz: $(PIXZ_OBJS)
15 years ago
gcc $(LDFLAGS) -o $@ $^
15 years ago
$(PIXZ_OBJS): %.o: %.c pixz.h
15 years ago
gcc $(CFLAGS) -c -o $@ $<
15 years ago
15 years ago
run: pixz
time ./$< < test.in > test.out
@md5sum test.in
@xz -d < test.out | md5sum
15 years ago
clean:
15 years ago
rm -f *.o pixz test.out
15 years ago
.PHONY: run clean