|
|
1.1 ! root 1: LIBNAME = libux3.a ! 2: CFLAGS = -O ! 3: INCRT = /usr/include ! 4: FRC = ! 5: ! 6: FILES = \ ! 7: $(LIBNAME)(strchr.o) \ ! 8: $(LIBNAME)(strpbrk.o) \ ! 9: $(LIBNAME)(strspn.o) \ ! 10: $(LIBNAME)(strtok.o) ! 11: ! 12: all: $(LIBNAME) ! 13: ! 14: $(LIBNAME): $(FILES) ! 15: ranlib $(LIBNAME) ! 16: ! 17: install: all ! 18: ! 19: clean: ! 20: -rm -f *.o ! 21: ! 22: clobber: clean ! 23: -rm -f $(LIBNAME) ! 24: ! 25: $(LIBNAME)(%.o): %.c ! 26: $(CC) -c -x $(CFLAGS) $%.c ! 27: $(AR) r $(LIBNAME) $%.o ! 28: rm -f $%.o ! 29: ! 30: $(LIBNAME)(strchr.o): \ ! 31: $(FRC) ! 32: ! 33: $(LIBNAME)(strpbrk.o): \ ! 34: $(FRC) ! 35: ! 36: $(LIBNAME)(strspn.o): \ ! 37: $(FRC) ! 38: ! 39: $(LIBNAME)(strtok.o): \ ! 40: $(FRC) ! 41: ! 42: FRC:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.