加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 629 Bytes
一键复制 编辑 原始数据 按行查看 历史
badaix 提交于 2019-11-17 19:58 . add test infrastructure
# This file is part of popl (program options parser lib)
# Copyright (C) 2015-2018 Johannes Pohl
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE file for details.
TARGET = popl
SHELL = /bin/bash
CXX = /usr/bin/g++
CXXFLAGS = -Wall -O3 -std=c++11 -Iinclude -pedantic -Wextra -Wshadow -Wconversion
OBJ = example/popl_example.o
BIN = popl_example
all: $(TARGET)
reformat:
clang-format -i include/popl.hpp
$(TARGET): $(OBJ)
$(CXX) $(CXXFLAGS) -o $(BIN) $(OBJ) $(LDFLAGS)
strip $(BIN)
%.o: %.cpp
$(CXX) $(CXXFLAGS) -c $< -o $@
clean:
rm -rf $(BIN) $(OBJ) *~
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化