CC = gcc -O4

all: anchors chaos 
clean: 
	rm -f chaos anchors
anchors: anchors.c skiplist.c
	$(CC) -o anchors anchors.c skiplist.c
chaos: fchaos.c thrtrie.c skiplist.c global.c translate.c mempage.c filebuffer.c
	$(CC) -o chaos fchaos.c thrtrie.c skiplist.c global.c translate.c filebuffer.c -lm -DCHAOS__FLAG
