|
|
1.1 ! root 1: # Makefile 4.1 83/07/06 ! 2: # ! 3: DESTDIR= ! 4: AS=/bin/as ! 5: CC=/bin/cc ! 6: LCC=/bin/cc ! 7: LD=/bin/ld ! 8: INCLDIR=${DESTDIR}/usr/include ! 9: LIBDIR=${DESTDIR}/lib ! 10: ULIBDIR=${DESTDIR}/usr/lib ! 11: ! 12: CFLAGS= -O -I${INCLDIR} ! 13: OBJS= main.o init.o subr.o gettytab.o ! 14: ! 15: all: getty ! 16: ! 17: getty: ${OBJS} ! 18: ${CC} -o getty ${OBJS} ! 19: ! 20: install: all ! 21: install -s getty ${DESTDIR}/etc/getty ! 22: ! 23: clean: ! 24: rm -f getty ${OBJS} a.out core errs ! 25: ! 26: cleansrc: ! 27: rm -f *.[ch] Makefile ! 28: ! 29: main.o: gettytab.h ! 30: init.o: gettytab.h ! 31: subr.o: gettytab.h
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.