make[4]: Entering directory `/work/uClinux-dist/lib/libc/gtermcap'
make[4]: *** No rule to make target `(termcap.o', needed by `all'. Stop.
提示的错误
1 # Copyright (C) 1995,1996 Robert de Bath <rdebath@cix.compulink.co.uk>
2 # This file is part of the Linux-8086 C library and is distributed
3 # under the GNU Library General Public License.
4
5 LIBC=../libc.a
6 OBJ=termcap.o tparam.o
7
8 all: $(LIBC) ($(OBJ)) 这一句的 ($(OBJ)) 是什么意思?
9 #@$(RM) $(OBJ)
10
11 clean:
12 rm -f *.o libc.a
这是这个 makefile 文件
不清除 这个文件要做什么
心有法竹