|
|
1.1 ! root 1: # Makefile 4.1 83/02/11 ! 2: ! 3: MAKEPARAM = AS=${AS} CC=${CC} LD=${LD} INCLDIR=${INCLDIR} LIBDIR=${LIBDIR} ULIBDIR=${ULIBDIR} DESTDIR=${DESTDIR} ! 4: CFLAGS=-O ! 5: YFLAGS=-d ! 6: ! 7: SOURCE = e.y e.h diacrit.c eqnbox.c font.c fromto.c funny.c glob.c integral.c \ ! 8: io.c lex.c lookup.c mark.c matrix.c move.c over.c paren.c \ ! 9: pile.c shift.c size.c sqrt.c text.c ! 10: ! 11: FILES = e.o diacrit.o eqnbox.o font.o fromto.o funny.o glob.o integral.o \ ! 12: io.o lex.o lookup.o mark.o matrix.o move.o over.o paren.o \ ! 13: pile.o shift.o size.o sqrt.o text.o ! 14: ! 15: eqn: $(FILES) ! 16: ${CC} $(CFLAGS) $(FILES) -o eqn ! 17: ! 18: e.c: e.def ! 19: ! 20: e.def: e.y ! 21: yacc -d e.y ! 22: mv y.tab.c e.c ! 23: mv y.tab.h e.def ! 24: ! 25: $(FILES): e.h e.def ! 26: ! 27: install: eqn ! 28: install -s eqn $(DESTDIR)/usr/bin ! 29: ! 30: clean: ! 31: rm -f *.o e.c e.def eqn ! 32: ! 33: cleansrc: ! 34: rm -f *.[chy] Makefile ! 35: ! 36: list: ! 37: pr TODO $(SOURCE) makefile ! 38: ! 39: lint: y.tab.c ! 40: lint -spb *.c
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.