# $Copyright:	$
# Copyright (c) 1984, 1985, 1986, 1987, 1988, 1989, 1990 
# Sequent Computer Systems, Inc.   All rights reserved.
#  
# This software is furnished under a license and may be used
# only in accordance with the terms of that license and with the
# inclusion of the above copyright notice.   This software may not
# be provided or otherwise made available to, or used by, any
# other person.  No title to or ownership of the software is
# hereby transferred.
#

#	Copyright (c) 1986 AT&T
#	  All Rights Reserved

#	THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T
#	The copyright notice above does not evidence any
#	actual or intended publication of such source code.

#	This module is created for NLS on Nov.12.86

#ident	"$Header: makefile 1.2 89/10/20 $@(#)libw-port:makefile	1.0"
#
# makefile for libw/port
#
#
# The macro PROF is null by default, causing profiled object to be maintained.
# If profiled object is not desired, the reassignment PROF=@# should appear in
# the make command line.
#

.SUFFIXES: .p
CC=cc
CFLAGS=-O
PROF=
NONPROF=
DEFLIST=
SDEFLIST=
MAKE=$(PFX)make

all:	prof nonprof 

nonprof:
	$(NONPROF)cd wstdio; $(MAKE) -e $(IGN) nonprof PROF=@#
	$(NONPROF)cd wstring; $(MAKE) -e $(IGN) nonprof PROF=@#
	$(NONPROF)cd formatio; $(MAKE) -e $(IGN) nonprof PROF=@#
	$(NONPROF)cd wmisc; $(MAKE) -e $(IGN) nonprof PROF=@#
	$(NONPROF)cd wctype; $(MAKE) -e $(IGN) nonprof PROF=@#
prof:
	$(PROF)cd wstdio; $(MAKE) -e $(IGN) prof NONPROF=@#
	$(PROF)cd wstring; $(MAKE) -e $(IGN) prof NONPROF=@#
	$(PROF)cd formatio; $(MAKE) -e $(IGN) prof NONPROF=@#
	$(PROF)cd wmisc; $(MAKE) -e $(IGN) prof NONPROF=@#
	$(PROF)cd wctype; $(MAKE) -e $(IGN) prof NONPROF=@#
	
clean:

clobber: clean
	-rm -f */*.o
	-rm -f */*.p
