# 
#       File:	Imakefile
#     Module:	libLlist
#       Date:	07/16/92
#     Author:	Daniel B. Waylonis (danw@msc.edu)
# 
#    Copyright @ 1992 by Research Equipment Inc. (dba)
#    Minnesota Supercomputer Center, Inc.
# 
#  RESTRICTED RIGHTS LEGEND
#    Use, duplication, or disclosure of this software and its documentation
#    by the Government is subject to restrictions as set forth in subdivision
#    { (b) (3) (ii) } of the Rights in Technical Data and Computer Software
#    clause at 52.227-7013.
# 
#  $Log$
#  

#ifdef mc68000
CC		=	gcc
CCOPTIONS	=	-fstrength-reduce -fpcc-struct-return
#endif

LIBNAME		=	Llist
TARGET		=	lib$(LIBNAME).a
LIBDEST		=	.

CDEBUGFLAGS	=	-g

# MSC_DIR		=	../..

INCLUDES	=	-I..
INSTALLFLAGS	=	$(INSTINCFLAGS)

SRCS		=	List.c

OBJS		=	$(SRCS:.c=.o)

pseudoinstall:
	@make $(TARGET)

NormalLibraryTarget($(LIBNAME),$(OBJS))
InstallLibrary($(LIBNAME), $(LIBDEST))
