# Makefile of Infoshock Windows Framework (IWF)
#
#{{IS_NOTE
#
# Authors:	Tom M. Yeh
# Contributors:
# Create Date:	7/21/0 10:50AM
# $Header: /cvsroot/jedi/lib/Makefile,v 1.4 2000/08/09 11:45:35 tomyeh Exp $
# Purpose:	
# Description:
#
#}}IS_NOTE
#
# Copyright (C) 2000 Infoshock Corporation. All Rights Reserved.
#
#{{IS_RIGHT
#}}IS_RIGHT
#

B_TARGET := libutl$(DOT_LIBEXT)
O_LIST_IMAGE := _dummy_
	#Unlike iwf, we cannot simply put the library in O_LIST_IMAGE,
	#because GNU linker expects -Ldir -Lname which requires special
	#handling in test/Makefile

#include rules
include $(TOPDIR)/Rules.make

ifeq ($(__OSL__),__WinCE__)
$(B_TARGET) : $(O_LIST)
	$(AR) /OUT:$@ /NOLOGO $(O_LIST)
else
$(B_TARGET) : $(O_LIST)
	$(AR) rcs $@ $(O_LIST)
endif
