
CC = gcc

INCLUDE = -I../../Include
CFLAGS  = -Wall
CFLAGS += -m486 -O3 -ffast-math -fomit-frame-pointer $(INCLUDE)

OBJS =	line.o copy_bitmap.o\
	put_bitmap.o rotate_bitmap.o _getpixel.o scale.o\
	compile_bitmap.o cbitmap_size.o put_cbitmap.o copy_mbitmap.o\
	put_mbitmap.o polygon.o poly2.o

all: $(OBJS) 

clean:
	rm -f $(OBJS)

distclean: clean

dep:
	gcc $(INCLUDE) -MM *.c > depend

$(OBJS):
include depend
