# NOTE: must use a tab to start the command line # target: dependency1 dependency2 ... # command to generate target # # first target is the one create w/o a command line argument # $ make # will create server # $ make client # will create client # $ make clean # will delete client and server server: server.cpp g++ -g -o server server.cpp client: client.cpp g++ -g -o client client.cpp # clean deletes all the files that are generated (don't delete src files!) clean: rm -f client server