makefile

来自「Path MPICH-V for MPICH the MPI Implement」· 代码 · 共 21 行

TXT
21
字号
SOURCES= daemonCsched.c causal.c  checkpoint.c  daemoncom.c  elClient.cOBJECTS=$(SOURCES:.c=.o)INCLUDES=daemonCsched.h causal.h  checkpoint.h  daemoncom.h  elClient.h  prototypes.hCFLAGS=-I. -I../ -I../daemon -I../driver -I../utils -I../checkpoint -Wall -g $(DPROF)CC=gccall: libft.a mpirun_protocol.olibft.a: $(OBJECTS)	$(AR) crl libft.a $(OBJECTS)%.o: %.c $(INCLUDES)	$(CC) $(CFLAGS) -o $@ -c $<mpirun_protocol.o: mpirun_protocol.c ../mpirun/include/v2run.h ../mpirun/include/vrun_protocol.h	$(CC) $(CFLAGS) -c mpirun_protocol.c -I../mpirun/includeclean:	rm -f libft.a *.o

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?