# Initial generic macro values used by WEPS dmake makefile.mk # The following variables should be defined in the OS environment's # respective dmake startup.mk files. # default suffix variables # $(F) - Fortran src files # $(O) - "object" files # $(A) - library "archive" files # $(E) - executable files # initial macro values BIN = bin # default "bin" directory D = .d # include "dependency" files (not yet implemented) FC := # FORTRAN compiler FC_IFLAGS := # FORTRAN include file path FC_FLAGS := # FORTRAN compiler flags FC_DFLAGS := # FORTRAN compiler debug flags FC_OFLAGS := # FORTRAN compiler optimization flags AR := # library archiver AR_FLAGS := # library flags LIB_PREFIX := # library prefix MODEL := # memory model MDL := # memory model (lowercase $(MODEL) for use in filenames) LD := # linker LD_IFLAGS := # linker include file path LD_FLAGS := # linker flags LD_DFLAGS := # linker debug flags FC_INCL := # program to determine include dependencies (not implemented)