Makefile
author viric@llimona
Tue, 14 Aug 2007 22:18:46 +0200
changeset 8 09ec33061ff3
parent 7 c815840c5b65
child 9 225d6c820d23
permissions -rw-r--r--
Added 'ia5' binary, and fixed the ia5 functions.

CFLAGS=-O2 -g
CC=gcc

all: dictre idx2index trim-nou8 ia5

idx2index: idx2index.o dict.o
trim-nou8: trim-nou8.c

ia5: ia5.o dict.o

dictre: load.o dict.o write.o sort.o filter.o main.o fastmalloc.o repeated.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
repeated.c: dictre.h
ia5.c: dictre.h