makefile 174 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 rcstring: rcstring.o g++ -g -Wall -pedantic $^ -o $@ rcstring.o: rcstring.cpp rcstring.h g++ -g -c -Wall -pedantic $< -o $@ .PHONY: clean clean: -rm rcstring.o rcstring