123456789101112131415161718192021222324 |
- TOPDIR=../../../
- include $(TOPDIR)Rules.make
- CFLAGS+= -D_GCC_LIMITS_H_
- LIBC=$(TOPDIR)libc.a
- include makefile.objs
- all: $(LIBC)
- $(LIBC): $(OBJ)
- $(AR) $(ARFLAGS) $@ $(OBJ)
- transfer:
- -@rm -f ../include/stdio.h
- cp -p stdio.h ../include/.
- clean:
- rm -f *.o
|