advent_of_code/2022/11/Makefile

17 lines
234 B
Makefile
Raw Permalink Normal View History

2022-12-11 09:25:28 +00:00
CXX ?= c++
CXXFLAGS ?= -std=c++11 -Wall -Wextra -pedantic -O2
PROJECT = monkeys
all: ${PROJECT}
${PROJECT}: main.cpp
${CXX} ${CXXFLAGS} -o $@ $^
test: ${PROJECT}
./${PROJECT}
clean:
${RM} *.o ${PROJECT}
.PHONY: all clean test