# LIBRARY:   ImageIO Library v0.13
# 
# FILE:      makefile
#
# COPYRIGHT: Copyright (c) 2003-2004 Adrien Treuille
# 
# AUTHORS:   Adrien Treuille (treuille [AT] cs [DOT] washington [DOT] edu)
#
# LICENSE:   The ImageIO Library is supplied "AS IS".  The Authors
#            disclaim all warranties, expressed or implied,
#            including, without limitation, the warranties of
#            merchantability and of fitness for any purpose. 
#            The Authors assume no liability for direct, indirect,
#            incidental, special, exemplary, or consequential
#            damages, which may result from the use of the ImageIO
#            Library, even if advised of the possibility of such
#            damage.
#
#            Permission is hereby granted to use, copy, modify,
#            and distribute this source code, or portions hereof,
#            for any purpose, without fee, for non-commercial
#            purposes. All rights reserved for commercial uses of
#            this source code.
#

include ../opengl-dir.mk
INCLS   = -I/usr/X11R/include  -I$(TOP)/include

libimageio.a: imageio.o
	ar -cr libimageio.a imageio.o

imageio.o: imageio.cpp imageio.h
	gcc -c imageio.cpp $(INCLS)

clean:
	rm -f *~ *.o *.a
