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