#####################################################################
#  @(#)makefile	1.3 	
#
#  Copyright (c) 1997, Willows Software Inc.  All rights reserved.
#
#  Fields:
#  	project			name of project you are building
#	components		the objects to be linked together
#	libraries		custom libraries to be compiled
#	resource		base name of resource file (without .rc)
#
#  If you wish to link with the debugging version of the TWIN library,
#  uncomment TWINDBG.
#
#  Environment:
#	TWINDIR			base of TWIN distribution
#				   (where architecture independent 
#				    components are located)
#	TARGET			target platform
#	
#####################################################################

project		= generic
components	= generic.o generic.res.o
libraries	= 
resource	= generic

# Uncomment the below statement to link with debugging libraries.
#TWINDBG		= dbg 

include $(TWINDIR)/makeinclude/makefile.inc

#####################################################################
# user makefile definitions for libraries are placed below
#####################################################################
#
# Example:
#
# bitmaps.so: bitmaps.o bitmaps.def.o bitmaps.res.o
#	$(DLL_LD) $(DLL_LDOPT) -o $@ $? $(DLL_LDLIB)
#
# bitmaps.res.o: bitmaps.res.c
#	$(CC) -g $(CFLAGS) -o $@ -c $?
#
# bitmaps.res.c: bitmaps.rc
#	$(RC) -o $@ $(DLL_RCOPT) $(TWIN_INCPATH) $?
#
# bitmaps.def.o: bitmaps.def.c
#	$(CC) -g $(CFLAGS) -o $@ -c $?
#
# clean-libs:
#	rm -f bitmaps.so \
#	      bitmaps.res.c bitmaps.res.o \
#	      bitmaps.def.c bitmaps.def.o
#

clean-libs:

