makefile find cpp
####################################### ELF=main DEBUG=-g LIB= -lpthread -lrt -lstdc++ ####################################### CC=g++ $(DEBUG) $(LIB) CXX=g++ $(DEBUG) $(LIB) SRC=$(shell find -name '*.cpp') OBJ=$(SRC:.cpp=.o) $(ELF):$(OBJ) $(OBJ): clean: rm -f $(ELF) $(OBJ)
浙公网安备 33010602011771号