Makefile
上传用户:speoil
上传日期:2021-10-06
资源大小:100k
文件大小:1k
源码类别:

3G开发

开发平台:

C/C++

  1. LIBS = -lm CCC = g++ -Wall -Wno-deprecated -DLINUX_C OBJ_FILES = Utils_1.o Utils_2.o LDPC_1.o LDPC_2.o Encoding.o Main.o
  2. H_FILES = Utils_1.h Utils_2.h LDPC_1.h LDPC_2.h Encoding.h Portability.h
  3. all: q_LDPC Utils_1.o: Utils_1.cpp ${H_FILES} ${CCC} -c Utils_1.cpp -o Utils_1.o Utils_2.o: Utils_2.cpp ${H_FILES}
  4. ${CCC} -c Utils_2.cpp -o Utils_2.o
  5. LDPC_1.o: LDPC_1.cpp ${H_FILES} ${CCC} -c LDPC_1.cpp -o LDPC_1.o LDPC_2.o: LDPC_2.cpp ${H_FILES}
  6. ${CCC} -c LDPC_2.cpp -o LDPC_2.o
  7. Encoding.o: Encoding.cpp ${H_FILES} ${CCC} -c Encoding.cpp -o Encoding.o Main.o: Main.cpp ${H_FILES} ${CCC} -c Main.cpp -o Main.o q_LDPC: ${OBJ_FILES} ${CCC} ${OBJ_FILES} ${LIBS} -o q_LDPC