Makefile
author viric@mandarina
Sat, 11 Aug 2007 16:01:25 +0200
changeset 3 ba1b3c2fcff2
parent 2 57a1fcb0c75c
child 5 c87681fff7d3
permissions -rw-r--r--
Less memory use, less often output.

CFLAGS=-O2 -g
CC=gcc

all: dictre idx2index

idx2index: idx2index.c

dictre: load.o dict.o write.o sort.o filter.o main.o fastmalloc.o
	$(CC) -o $@ $^

dict.c: dictre.h
write.c: dictre.h
load.c: dictre.h
sort.c: dictre.h
filter.c: dictre.h
main.c: dictre.h
fastmalloc.c: dictre.h