makefile简单helloworld
?
先来个比较基础的makefile列子:
%.o:%.c$(XX) $(CFLAGS) -c $< -o $@@echo $@%.o:%.cpp$(XX) $(CFLAGS) -c $< -o $@@echo $@