1 Star 1 Fork 0

Hic/dsent

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
Hic 提交于 2020-05-25 22:46 . 上传
# Define the directories that will be compiled
DIRS_TO_COMPILE := util tech io \
model model/timing_graph \
model/std_cells \
model/electrical \
model/electrical/router \
model/optical \
model/optical_graph \
model/network \
model/network/ATAC
DIRS = $(patsubst %,$(CURDIR)/%,$(DIRS_TO_COMPILE))
SRCS = $(foreach dir, $(DIRS), $(wildcard $(dir)/*.cc))
OBJS = $(SRCS:%.cc=%.o)
DEF_FLAGS =
INCLUDE_FLAGS = -I$(CURDIR)
OPT_FLAGS = -O2 -g
WARN_FLAGS = -pedantic -Wall -W #-Wextra -Werror -Wno-write-strings
CXXFLAGS = $(OPT_FLAGS) $(WARN_FLAGS) $(INCLUDE_FLAGS) $(DEF_FLAGS)
LD_LIBS += -lutil
LD_FLAGS += -Llibutil
# Other libraries used
LIB_UTIL = libutil/libutil.a
#TARGET = $(CURDIR)/libdsent.a
TARGET = $(CURDIR)/dsent
all: $(TARGET)
#$(TARGET): $(OBJS)
# ar rcs $@ $^
$(TARGET): main.o DSENT.o $(LIB_UTIL) $(OBJS)
$(CXX) $(CXXFLAGS) $(LD_FLAGS) $(OBJS) main.o DSENT.o -o $(TARGET) $(LD_LIBS)
# For general c++ compilation
%.o: %.cc
$(CXX) $(CXXFLAGS) -c $< -o $@
$(LIB_UTIL):
$(MAKE) -C $(CURDIR)/libutil
%/created:
mkdir -p $(dir $@)
touch $@
.phony: clean
clean:
$(RM) -rf main.o DSENT.o $(OBJS) $(TARGET)
$(MAKE) -C $(CURDIR)/libutil clean
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/hic_0757/dsent.git
[email protected]:hic_0757/dsent.git
hic_0757
dsent
dsent
master

搜索帮助