#
# makefile with libtiff
#
CC = gcc
#
#INCLUDES = -I/usr/include/
#
CFLAGS = -O2 \
	-ffast-math \
	-march=core2 -mtune=core2 -mmmx -mssse3 \
	-Wall
#
LIBS = -lm

OBJS = columnize.o

columnize: $(OBJS)
	$(CC) $(OBJS) $(LIBS) -o columnize.x

.PHONY: clean
clean:
	$(RM) $(OBJS) columnize.x
