# Makefile # # Hello World # # CSCI 1300 # Fall 2005 # # Karl Winklmann # # If you copy this file make sure that # what looks like several blank spaces at the # beginning of lines actually is a single # tab character. There are two such lines # below. # main.o: main.cxx g++ -g -c -Wall main.cxx # main.exe: main.o bgi++ -o main.exe main.o #