LibAC-cpp/Makefile

23 lines
300 B
Makefile
Raw Permalink Normal View History

2024-07-30 16:15:02 -07:00
# Compiler and flags
CXX = g++
CXXFLAGS = -std=c++17 -Wall -Wextra
# Source files and target executable
# Build target
2024-07-30 16:33:29 -07:00
all: clean build
2024-07-30 16:15:02 -07:00
2024-07-30 16:33:29 -07:00
build:
mkdir build
2024-07-31 03:14:51 -07:00
cd build && cmake .. && make
2024-07-30 16:15:02 -07:00
# Clean up build artifacts
clean:
2024-07-30 16:33:29 -07:00
rm -rf build
2024-07-30 16:15:02 -07:00
2024-07-31 03:14:51 -07:00
install: build
cd build && make install
2024-07-30 16:15:02 -07:00
.PHONY: all clean