all: compile checkstyle test compile: g++ -o LeapYearMain LeapYearMain.cpp checkstyle: python ../CodingStandards/cpp/cpplint.py *.cpp test: g++ -o LeapYearTest LeapYearTest.cpp -lgtest ./LeapYearTest clean: rm -f LeapYearMain rm -f LeapYearTest