我有一个makefile,它应该从一组文件生成一个输出文件。 make -icpc = cc运行,但不生成文件

时间:2017-04-19 19:23:55

标签: gcc makefile linker cc icc

基本上我想使用GNU编译器而不是Intel。

makefile的输出具有以下内容:

#environment    ISL_ROOT = /opt/shared/sw/x86_64-unknown-linux-gnu/isl/0.14-rhel6    ...    ...     ...     #default     .VARIABLES:=     # 环境     icc = CC     # 环境     CVS_RSH = ssh

以下是makefile的一部分:

-include ../makefile.init

RM := rm -rf

# All of the sources participating in the build are defined here
-include sources.mk
-include oed/subdir.mk
-include objects/subdir.mk
-include subdir.mk
-include objects.mk

ifneq ($(MAKECMDGOALS),clean)
ifneq ($(strip $(CC_DEPS)),)
-include $(CC_DEPS)
..
..

感谢任何帮助..

0 个答案:

没有答案