###########################################################################
#  @(#)Makefile	1.15 
#
#  Makefile for building 'libdll.a', the library for building DLLs.
#  
#  Copyright (c) 1995-1996, Willows Software Inc.  All rights reserved.
#
###########################################################################

components = LibMain.o LibWEP.o DefTable.o ResTable.o DummyEnviron.o

#########################################################################

TWIN_AUXINC	= -I$(TWINDIR)/win

project = libdll
default = archive

include $(TWINDIR)/Makefile.config

libdll.a: $(components)
	${AR} libdll.a $(components)
	${RANLIB} libdll.a
	cp libdll.a $(TWINDIR)/win/libdll.a

