中级makefile
TARGET=log4ctestOBJS=main.o other.o mylog.oINC=LIBPATH=%.o:%.cpp g++ -Wall -c -g -I$(INC) -I. $< -o $@ $(TARGET):$(OBJS) g++ $(OBJS) -llog4c -o $(TARGET).PHONY:clean clean: rm *.o $(TARGET)
完美