#
# Copyright (c) 2005 X.Org Foundation L.L.C.
# 
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
# of the Software, and to permit persons to whom the Software is furnished to do
# so, subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
# $Header: /usr4/cvs/vsw5/src/libXtTest/Makefile,v 8.0 1998/12/23 23:25:33 mar Rel $
#
# Copyright (c) Applied Testing and Technology, Inc. 1993, 1994, 1995
# Copyright (c) 88open Consortium, Ltd. 1990, 1991, 1992, 1993
# All Rights Reserved.
#
# Project: VSW5
#
# File: vsw5/src/lib/libXtTest/Makefile
#
# Description: Makefile for libXtTest
#
# Modifications
# $Log: Makefile,v $
# Revision 8.0  1998/12/23 23:25:33  mar
# Branch point for Release 5.0.2
#
# Revision 7.0  1998/10/30 22:43:47  mar
# Branch point for Release 5.0.2b1
#
# Revision 6.0  1998/03/02 05:17:52  tbr
# Branch point for Release 5.0.1
#
# Revision 5.0  1998/01/26 03:14:24  tbr
# Branch point for Release 5.0.1b1
#
# Revision 4.1  1996/01/25 02:34:24  andy
# Added IGNORE target
#
# Revision 4.0  1995/12/15  08:45:04  tbr
# Branch point for Release 5.0.0
#
# Revision 3.1  1995/12/15  00:42:55  andy
# Prepare for GA Release
#

.IGNORE:

CFILES =	avs_def.c \
		avs_func.c \
		avs_hier.c \
		avs_hierd.c \
		avs_init.c \
		avs_tree.c \
		avs_widget.c \
		avs_xext.c \
		AvsComp.c \
		AvsComp2.c \
		AvsForm.c \
		AvsForm2.c \
		AvsForm3.c \
		AvsRectObj.c \
		AvsWid.c \
		AvsObj.c \
		check.c \
		eventname.c \
		sendevent.c \
		sendmask.c \
		xhandler.c \
		xthandler.c \
		xunexperr.c \
		errlook.c \
		event.c \
		misc.c \
		pshpop.c \
		signals.c \
		waitfor.c 

OFILES =	avs_def.o \
		avs_func.o \
		avs_hier.o \
		avs_hierd.o \
		avs_init.o \
		avs_tree.o \
		avs_widget.o \
		avs_xext.o \
		AvsComp.o \
		AvsComp2.o \
		AvsForm.o \
		AvsForm2.o \
		AvsForm3.o \
		AvsRectObj.o \
		AvsWid.o \
		AvsObj.o \
		check.o \
		eventname.o \
		sendevent.o \
		sendmask.o \
		xhandler.o \
		xthandler.o \
		xunexperr.o \
		errlook.o \
		event.o \
		misc.o \
		pshpop.o \
		signals.o \
		waitfor.o 

RM_FILES = *.o core *.a

all: libXtTest.a 

libXtTest.a: $(OFILES)
		@$(AR) $@ `$(LORDER) $(OFILES) | $(TSORT)`
		: $(RANLIB) $@


.c.o:
	$(CC) -c $(XT_CFLAGS) $<

install: all
	$(CP) libXtTest.a $(XTESTLIBDIR)
	@$(RANLIB) $(XTESTLIBDIR)/libXtTest.a

FORCE:		CLOBBER all

clean:
		@$(RM) -f $(RM_FILES)

clobber:	clean
