CC=icc
CFLAGS=/Gm+ 

namelist: namelist.exe namelist.cpp


display: display.exe display.cpp

write: write.exe write.cpp

getset: getset.exe getset.cpp

.cpp.exe:
  $(CC) $(CFLAGS) %s

