|
|
1.1 ! root 1: # ! 2: # Copyright (c) 1987 Regents of the University of California. ! 3: # All rights reserved. The Berkeley software License Agreement ! 4: # specifies the terms and conditions for redistribution. ! 5: # ! 6: # @(#)Makefile 1.3 (Berkeley) 6/18/87 ! 7: # ! 8: CFLAGS= -O ! 9: LIBC= /lib/libc.a ! 10: SRCS= m4.c m4y.c ! 11: OBJS= m4.o m4y.o ! 12: ! 13: all: m4 ! 14: ! 15: m4: ${OBJS} ${LIBC} ! 16: ${CC} -o $@ ${CFLAGS} ${OBJS} ! 17: ! 18: clean: FRC ! 19: rm -f ${OBJS} core m4 m4y.c ! 20: ! 21: depend: ${SRCS} FRC ! 22: mkdep ${CFLAGS} ${SRCS} ! 23: ! 24: install: FRC ! 25: install -s -o bin -g bin -m 755 m4 ${DESTDIR}/usr/bin/m4 ! 26: ! 27: lint: ${SRCS} FRC ! 28: lint ${CFLAGS} ${SRCS} ! 29: ! 30: tags: ${SRCS} FRC ! 31: ctags ${SRCS} ! 32: ! 33: FRC: ! 34: ! 35: # DO NOT DELETE THIS LINE -- mkdep uses it. ! 36: # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. ! 37: ! 38: m4.o: m4.c /usr/include/stdio.h /usr/include/signal.h ! 39: m4.o: /usr/include/machine/trap.h ! 40: m4y.o: m4y.c ! 41: ! 42: # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.