#
# Makefile for gtool4/src/string
# Copyright (C) TOYODA Eizi, 2000.  All rights reserved.
#
# modified by S.Takehiro  July 5, 2000
#   $(STRING) should be defined in Mkinclude

include ../../Mkinclude

OBJS=dc_string.o dc_chars.o iso_varying_string.o string.o \
	varying_strings.o

all: lib 

lib: $(OBJS)

string.f90: string_$(STRING).f90
	@echo "Selecting string module code (string_$(STRING).f90)"
	$(CP) string_$(STRING).f90 string.f90

clean:
	-$(RM) *.o *.bak *.mod *.exe *~ string.f90

iso_varying_string.o: string.o
dc_string.o: string.o
varying_strings.o: iso_varying_string.o

