CFLAGS = -Aa

all: Example

clean:
	/bin/rm *.o Example

OBJ = tiff.o allocate.o randlib.o

Example: Example.o $(OBJ) 
	cc $(CFLAGS) -o Example Example.o $(OBJ) -lm

