linux
Linux常用操作
猿boy
学习ing
展开
-
读取目录下普通文件
读取目录下普通文件 #include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> #include <string.h> #include <dirent.h> #define FILE_NAME_LEN 500 void read_dir(const char* file_name); int opt_file(const c原创 2020-07-03 20:55:03 · 133 阅读 · 0 评论 -
makefile模板:
makefile通用模板: LIB=-lpthread TARGET = test SRC = $(wildcard *.c) OBJ = $(patsubst %.c,%.o,$(SRC)) CC := gcc CCFLAG = -g all:$(TARGET) $(TARGET):$(OBJ) $(CC) $(CCFLAG) $^ -o $@ $(LIB) .PHONY: clean: rm -rf *.o $(TARGET)原创 2020-07-02 00:16:19 · 129 阅读 · 0 评论