#==============================================================================
#                                photo/Makefile
#------------------------------------------------------------------------------
# Makefile to compile anPaul Mackerras' photo widget (plus additional utility
# functions) for use with Tcl-SIPP.
#------------------------------------------------------------------------------
# $Id: Makefile,v 3.0 1993/01/20 06:42:39 markd Rel $
#------------------------------------------------------------------------------

include ../Config.mk

SHELL=/bin/sh

OBJS= photo.o

INCL=$(TKINCL) $(TCLINCL)

CFLAGS = $(CCOPT) $(INCL)

#-----------------------------------------------------------------------------

all: made.tmp

made.tmp: $(OBJS)
	$(AR) cr ../libtsipp.a $(OBJS)
	touch made.tmp

photo.o: photo.c photo.h

#-----------------------------------------------------------------------------

clean: 
	rm -f $(OBJS) made.tmp
