标签:efi std obj file new libs rom makefile gtest
cc = g++ -std=c++11
prom = calc
deps = FtTest.h
obj = FtTest.o newft.o
LIBS = -lgtest_c11
$(prom): $(obj)
$(cc) -o $(prom) $(obj) $(LIBS)
%.o: %.c $(deps)
$(cc) -c $< -o $@
标签:efi std obj file new libs rom makefile gtest
原文地址:https://www.cnblogs.com/ims-/p/9862557.html