1 Star 3 Fork 3

寿星万年历(天文历)/sxwnl-cpp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Makefile 623 Bytes
一键复制 编辑 原始数据 按行查看 历史
QAIU 提交于 2023-04-15 04:24 . fixed some bugs
BUILD_PATH := build
VPATH := eph : lunar : draw : test : mylib
OBJ0 := eph0.o eph.o eph_msc.o eph_rsgs.o eph_rspl.o eph_yspl.o \
eph_szj.o eph_show.o lunar.o lunar_ob.o lunar_ssq.o tool.o lat_lon_data.o
OBJ1 := test1.o $(OBJ0)
OBJ2 := test.o $(OBJ0)
LIBS := -lm
FLAG := -fexceptions -std=c++11
ifdef CXXFLAGS
CXXFLAGS := $(CXXFLAGS) $(FLAG)
else
CXXFLAGS := -Os $(FLAG)
endif
TARGET = mytest
all: test1 test0
test1: $(OBJ1)
$(CXX) $(CXXFLAGS) $(LIBS) $^ -o $@
test0: $(OBJ2)
$(CXX) $(CXXFLAGS) $(LIBS) $^ -o $@
.PHONY: test1 test0 clean cleanw
clean:
rm -rf *.o test1 test0
cleanw:
del *.o test1 test0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/sxwnl/sxwnl-cpp.git
[email protected]:sxwnl/sxwnl-cpp.git
sxwnl
sxwnl-cpp
sxwnl-cpp
master

搜索帮助