Download this source file


# Sample working makefile for C++ project 1
# Written by Wayne Pollock, 2/23/2000

sketch.exe: screen.obj main.obj
        bcc32 -esketch.exe screen.obj main.obj

screen.obj: screen.cpp screen.h

main.obj: main.cpp screen.h

clean:
	del *.obj
	del *.tds

cleanall: clean
        del sketch.exe