Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

CSC112 Spring 2016 Examples

2370 views
CPPFLAGS=--std=gnu++11 -g
LD=g++

drawShape: main.o shape.o tty_functions.o rectangle.o square.o
	g++ $(CPPFLAGS) -o drawShape main.o shape.o tty_functions.o rectangle.o square.o

clean:
	rm -f *.o drawShape