#
#	$Id: MakeFile 19708 2010-10-29 18:04:21Z d3y133 $	
#

#!MESSAGE *** Unresolved issues in this nmake file ***

FOBJ =         $(OBJDIR)\damax.obj \
               $(OBJDIR)\dlaebz2.obj \
               $(OBJDIR)\dstebz3.obj \
               $(OBJDIR)\heapsort.obj \
               $(OBJDIR)\neblw2.obj \
               $(OBJDIR)\dspevx2.obj \
               $(OBJDIR)\dgetavec.obj \
               $(OBJDIR)\dgetavec2.obj \
               $(OBJDIR)\dgetavec3.obj \
               $(OBJDIR)\types1.obj 

EOBJ =         $(OBJDIR)\xerbl2.obj \
               $(OBJDIR)\ilaenv1.obj \
               $(OBJDIR)\menode.obj \
               $(OBJDIR)\pairup.obj \
               $(OBJDIR)\xstop.obj

OBJ =          $(FOBJ) $(EOBJ)

LIBRARY = peigs.lib

!INCLUDE ..\..\DEFS.WIN32

!INCLUDE ..\..\..\config\NTmakefile.h
!INCLUDE ..\..\..\config\NTmakelib.h

!IF 0

include ../../DEFS

all:		$(FOBJ) $(EOBJ)

.EXPORT_ALL_VARIABLES:

.PHONY :	clean


		-rm -f F*.f

realclean:
		clean

#
# Note that under Cygwin the rm commands are case-insensitive, so the
# commands below intended to remove intermediate .f files actually remove
# the original .F files!  Since intermediate files are not generated for
# Cygwin, this is avoided by commenting out the rm statements.
#
clean:
		-rm -f *.o
		-rm -f *.s
ifneq ($(peigs_TARGET),CYGNUS)
		-rm -f dgetavec.f dlaebz2.f dlagtf1.f \
		dlasy2.f dlasyf.f dspevx2.f dstebz3.f \
		neblw2.f sneblw2.f sstebz3.f
endif
		-rm -f F*.f

.f.o:; $(peigs_FC) -c $<
.F.o:; $(peigs_FC) -c $<
.c.o:; $(peigs_CC) -c $<

!ENDIF
